blob: 65695b3ad09d71f7d6ced456837e99c55568a233 (
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
27
28
29
|
/*
Description: Emmits a server-wide message as `info`
*/
import * as UAC from '../utility/UAC/_info';
// module main
export async function run(core, server, socket, data) {
// increase rate limit chance and ignore if not admin
if (!UAC.isAdmin(socket.level)) {
return server.police.frisk(socket.address, 20);
}
// send text to all channels
server.broadcast({
cmd: 'info',
text: `Server Notice: ${data.text}`,
}, {});
return true;
}
export const requiredData = ['text'];
export const info = {
name: 'shout',
description: 'Displays passed text to every client connected',
usage: `
API: { cmd: 'shout', text: '<shout text>' }`,
};
|