-
Notifications
You must be signed in to change notification settings - Fork 4
/
commands.json
108 lines (108 loc) · 2 KB
/
commands.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"label": "?",
"num_commands": 12,
"commands": {
"rmuser": {
"id": 0,
"help": "rmuser [user]",
"desc": "Removes a user.",
"scope": -1
},
"ban": {
"id": 1,
"help": "ban [user]",
"desc": "Bans a user from the chat.",
"scope": -1
},
"unban": {
"id": 2,
"help": "unban [user]",
"desc": "Unbans a banned user.",
"scope": -1
},
"kick": {
"id": 3,
"help": "kick [user]",
"desc": "Temporarily disconnects a user.",
"scope": -1
},
"promote": {
"id": 4,
"help": "promote [user]",
"desc": "Promotes a user to admin.",
"scope": -1
},
"demote": {
"id": 5,
"help": "promote [user]",
"desc": "Demotes a user from admin.",
"scope": -1
},
"broadcast": {
"id": 50,
"help": "broadcast [msg]",
"desc": "Sends msg to everyone on.",
"scope": -1
},
"help": {
"id": 100,
"help": "help",
"desc": "Sends the help message.",
"scope": 0
},
"llamafy": {
"id": 101,
"help": "llamafy @[username]",
"desc": "Turns the user into a llama (it's a joke)!",
"scope": 0
},
"color": {
"id": 102,
"help": "color [color / hex code]",
"desc": "Sets your name to [color].",
"scope": 0
},
"colour": {
"alias": "color"
},
"pm": {
"id": 103,
"help": "pm [user] [msg]",
"desc": "Sends a private message to the user.",
"scope": 0
},
"img": {
"id": 104,
"help": "img [url]",
"desc": "Displays the image at the given url.",
"scope": 0
},
"image": {
"alias": "img"
},
"register": {
"id": 200,
"help": "register [roomName]",
"desc": "Registers an unregistered room as your own, saving the last 20 messages and adding it to a global registry.",
"scope": 0
},
"reg": {
"alias": "register"
},
"unregister": {
"id": 201,
"help": "unregister [roomName]",
"desc": "Unregisters a room that you currently own.",
"scope": 0
},
"deregister": {
"alias": "unregister"
},
"unreg": {
"alias": "unregister"
},
"dereg": {
"alias": "unregister"
}
}
}