-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhelp.json
230 lines (230 loc) · 7.04 KB
/
help.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
{
"categoryDescriptions": {
"fun": "Fun commands, they have no real purpose other than to entertain. Enjoy :)",
"moderation": "These commands are specifically for disciplining members or providing corrective action.",
"macro": "Macro commands are useful for maintaining and displaying helpful messages.",
"utility": "Generally useful commands, this is a misc section.",
"infractions": "Used for distributing and maintaining strike-based infractions.",
"permissions": "Administrative functionality for setting command permissions."
},
"commands":
[
{
"name": "cat",
"category": "fun",
"description": "Displays a picture of a cat.",
"structure:": "",
"example": ""
},
{
"name": "flip",
"category": "fun",
"description": "Flips a coin.",
"structure:": "",
"example": ""
},
{
"name": "addmacro",
"category": "macro",
"description": "Adds a macro by the which will respond with the given message when invoked by the given name.",
"structure:": "{macroName} [macroMessage]",
"example": "greet Hello, World!"
},
{
"name": "removemacro",
"category": "macro",
"description": "Removes a macro with the given name",
"structure:": "{macroname}",
"example": "removeMacro greet"
},
{
"name": "listmacros",
"category": "macro",
"description": "List all of the currently available macros.",
"structure:": "",
"example": ""
},
{
"name": "nuke",
"category": "moderation",
"description": "Delete the last 1 - 99 messages in the chat.",
"structure:": "{amount}",
"example": "10"
},
{
"name": "move",
"category": "moderation",
"description": "Move every message found within the given search space sent by any supplied ID in the Comma separated ID list to the specified channel.",
"structure:": "{idList (a list of ids, separated by commas)} {searchSpace} {targetChannelID}",
"example": "123412488123,23450293480234,234234234 10 323499949234"
},
{
"name": "ignore",
"category": "moderation",
"description": "Drop all commands from the given id (user or channel)",
"structure:": "{user/channelID}",
"example": "12340985893"
},
{
"name": "mute",
"category": "moderation",
"description": "Mute a member for a specified amount of minutes. ",
"structure:": "{userID} {timeInMinutes} [Reason]",
"example": "12340234239 10 Being a silly billy."
},
{
"name": "lockdown",
"category": "management",
"description": "Force the bot to ignore anyone who isn't the owner.",
"structure:": "",
"example": ""
},
{
"name": "prefix",
"category": "management",
"description": "Set the bot prefix to the specified string (Cannot be a space)",
"structure:": "{prefix}",
"example": "!!"
},
{
"name": "setFilter",
"category": "management",
"description": "Set the permission level required to run a command which contains a mention (used for mention sanitation) ",
"structure:": "{permissionLevel}",
"example": "moderator"
},
{
"name": "setperm",
"category": "permissions",
"description": "Set the permission level of the given command to the given permission level.",
"structure:": "{commandName} {permissionLevel}",
"example": "nuke moderator"
},
{
"name": "getPerm",
"category": "permissions",
"description": "Get the current required permission level for a particular command.",
"structure:": "{commandName}",
"example": "nuke"
},
{
"name": "listcommands",
"category": "permissions",
"description": "List all commands",
"structure:": "",
"example": ""
},
{
"name": "listavailable",
"category": "permissions",
"description": "List what commands are available to you.",
"structure:": "",
"example": ""
},
{
"name": "listPerms",
"category": "permissions",
"description": "List all available permission levels.",
"structure:": "",
"example": ""
},
{
"name": "listCommandPerms",
"category": "permissions",
"description": "Display all current commands and the corresponding required permission level to use each of them.",
"structure:": "",
"example": ""
},
{
"name": "warn",
"category": "infractions",
"description": "Warn a member, giving them a 0 strike infraction with the given reason.",
"structure:": "{userid} {reason}",
"example": "123401991824 Re-read the rules... no advertising."
},
{
"name": "strike",
"category": "infractions",
"description": "Give a member a weighted infraction, with specified weight and reason. This may result in them being banned. Weights should be below or equal to StrikeCeil",
"structure:": "{userid} {weight} {reason}",
"example": "1324234523048 1 Refusing to stop arguing. Please pay more attention to what moderators are saying to you"
},
{
"name": "history",
"category": "infractions",
"description": "Display a user's infraction history.",
"structure:": "",
"example": ""
},
{
"name": "removeStrike",
"category": "infractions",
"description": "Delete a particular strike by ID (these are listed in the history command).",
"structure:": "{strikeID}",
"example": "123"
},
{
"name": "cleanse",
"category": "infractions",
"description": "Completely wipe a user of all infractions. (Permanently deletes them)",
"structure:": "{userID}",
"example": ""
},
{
"name": "ping",
"category": "utility",
"description": "Pong!",
"structure:": "",
"example": ""
},
{
"name": "help",
"category": "utility",
"description": "Display a help menu.",
"structure:": "help { nothing | CommandName | category }",
"example": ""
},
{
"name": "serverinfo",
"category": "utility",
"description": "Display a message giving basic server information",
"structure:": "",
"example": ""
},
{
"name": "exit",
"category": "utility",
"description": "Exit, saving configurations.",
"structure:": "",
"example": ""
},
{
"name": "kill",
"category": "utility",
"description": "Exit, without saving configurations.",
"structure:": "",
"example": ""
},
{
"name": "uptime",
"category": "utility",
"description": "Displays how long you have kept me, HOTBOT, AWAKE!",
"structure:": "",
"example": ""
},
{
"name": "info",
"category": "utility",
"description": "Display some information about me",
"structure:": "",
"example": ""
},
{
"name": "dog",
"category": "fun",
"description": "Display a picture of a dog",
"structure:": "",
"example": ""
}
]
}