blob: e9c69e04ab2f5d619960659abb233682c2a31a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
Description: Emmits a server-wide message as `info`
*/
// module main
exports.run = async (core, server, socket, data) => {
// increase rate limit chance and ignore if not admin
if (socket.uType != 'admin') {
return server._police.frisk(socket.remoteAddress, 20);
}
// send text to all channels
server.broadcast({
cmd: 'info',
text: `Server Notice: ${data.text}`
}, {});
};
// module meta
exports.requiredData = ['text'];
exports.info = {
name: 'shout',
description: 'Displays passed text to every client connected',
usage: `
API: { cmd: 'shout', text: '<shout text>' }`
};
|