-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.js
513 lines (512 loc) · 15.7 KB
/
commands.js
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/*
* EXAMPLE: .something -option1 value1 -option2 value2 (-option3 value3)
* {
* command: "something", //COMMAND NAME AND CATEGORY ARE UNIQUE (TOGETHER!) Ex: no command 'polls' when there already exists a category 'polls'
* //'all' = RESERVED
* description: "Description of command",
* category: "random", //IMPORTANT FOR help COMMAND
* required_params: [
* {key:"option1",description:"This is option 1"},
* {key:"option2",description:"This is option 2"}
* ],
* optional_params: [
* {key:"option3",description:"This is option 3, this one is optional"},
* ],
* disabled: false, //IF true => COMMAND CAN'T BE USED BY ANYONE
* required_role: null, //NULL => EVERYONE CAN USE IT, STRING => EVERYONE WITH THAT ROLE CAN USE IT (Example: "admin")
* cooldown_time: null, //NULL OR 0 => NO COOLDOWN, EX: 300 (IN SECONDS) => 5 MINUTE COOLDOWN PER USER
cooldown_time_isw_only: true, //TRUE => COOLDOWN TIME ONLY ENABLED FOR ISW CHANNEL
* isw_only: false, //TRUE => COMMAND CAN ONLY BE USED IN ISW DISCORD SERVER
* }
*/
module.exports = [
{
command:"ping",
description:"Answers with pong.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"help",
description:"Shows information about a command, category or everything.",
category: "random",
required_params:[],
optional_params:[
{key:"command|category|all",description:"The command, category or everything to retrieve help about."}
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"insult",
description:"Makes the bot say an insult.",
category: "random",
required_params:[],
optional_params:[
{key:"user",description:"The user to direct the insult to (Works with @user)."}
],
disabled: false,
required_role: null,
cooldown_time: 21600,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"meme",
description:"Sends a random meme.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"fancy",
description:"Makes text fancy with a random font and/or a random decoration.",
category: "random",
required_params:[
{key:"style",description:"f for random font, d for random decoration, fd for both."},
{key:"message", description:"The message to be made fancy."}
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"purge",
description:"Deletes messages from current channel.",
category: "random",
required_params:[],
optional_params:[
{key:"amount",description:"The amount of messages to delete starting from the latest (excluding purge command) (MAX 99)."},
{key:"user", description:"Choose a specific user to delete messages from."}
],
disabled: false,
required_role: "admin",
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"say",
description:"Says a message with text to speach.",
category: "random",
required_params:[
{key:"message",description:"The message to say."},
],
optional_params:[
{key:"language",description:"The language to say the message in. Choices: english, french, dutch, german, korean, russian, italian, spanish."},],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"coinflip",
description:"Flips a coin.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_play",
description:"Starts playing music in the voice channel where the user is connected to.",
category: "music",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_stop",
description:"Stops playing music.",
category: "music",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_add",
description:"Add a song to the playlist.",
category: "music",
required_params:[
{key:"url|title",description:"Pick a song by a youtube url or title."},
],
optional_params:[
{key:"position",description:"The position to place the song at in the playlist (1 = top)."},
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_pick",
description:"Picks a song from the search results from the command 'music_add -search title'.",
category: "music",
required_params:[
{key:"num",description:"The number of the song to add from the search results."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_skip",
description:"Skips the currently playing song.",
category: "music",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_purge",
description:"Removes songs from the playlist.",
category: "music",
required_params:[],
optional_params:[
{key:"amount",description:"The amount of songs to delete starting from top (DEFAULT ALL SONGS)."},
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"music_list",
description:"Gives a list of all the songs queued in the playlist.",
category: "music",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"admin_add",
description:"Gives a user the admin role.",
category: "permissions",
required_params:[
{key:"user",description:"The user to give the admin role to."},
],
optional_params:[],
disabled: false,
required_role: "admin",
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"admin_remove",
description:"Removes the admin role from a specific user.",
category: "permissions",
required_params:[
{key:"user",description:"The user to remove the admin role from."},
],
optional_params:[],
disabled: false,
required_role: "admin",
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"admin_list",
description:"Gives a list of all admin users.",
category: "permissions",
required_params:[],
optional_params:[],
disabled: false,
required_role: "admin",
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"admin_commands",
description:"Shows all commands for only admins.",
category: "permissions",
required_params:[],
optional_params:[],
disabled: false,
required_role: "admin",
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_create",
description:"Creates a poll.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
],
optional_params:[
{key:"option1;...",description:"The options for the poll (seperated by ';')."},
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_close",
description:"Closes a poll and shows the most wanted option.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_list",
description:"Gives a list of all open polls.",
category: "polls",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_remind",
description:"Sends a message with the poll information.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_vote",
description:"Vote on an option from a poll.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
{key:"option_num",description:"The number of the option."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_unvote",
description:"Remove your vote from an option from a poll.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
{key:"option_num",description:"The number of the option."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_add_option",
description:"Adds an option to a poll.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
{key:"option",description:"The name of the option."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"poll_remove_option",
description:"Removes an option from a poll.",
category: "polls",
required_params:[
{key:"name",description:"The name of the poll."},
{key:"option_num",description:"The number of the option."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"remind",
description:"Reminds a user of something he has to do.",
category: "random",
required_params:[
{key:"user",description:"The user to remind."},
{key:"message",description:"The message."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"sb_play",
description:"Plays a sound.",
category: "soundboard",
required_params:[
{key:"sound_name",description:"The name of the sound."},
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: 300,
cooldown_time_isw_only: true,
isw_only: true,
},
{
command:"sb_list",
description:"List all of the sounds available.",
category: "soundboard",
required_params:[],
optional_params:[
{key:"directory",description:"The directory to list sounds from."},
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"no",
description:"Gives a no meme.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"yes",
description:"Gives a yes meme.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"triggered",
description:"Gives a triggered meme.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"wifi",
description:"Gives the wifi password of ISW in a private message.",
category: "random",
required_params:[],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: true,
},
{
command:"challenge",
description:"Challenge me or a user for a rock paper scissors game.",
category: "random",
required_params:[],
optional_params:[
{key:"player",description:"The @User to challenge."},
{key:"action",description:"Accept, deny or cancel a challenge with 'accept', 'deny' or 'cancel')"},
],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
},
{
command:"challenge_select",
description:"Select your choice when playing a rock paper scissors challenge.",
category: "random",
required_params:[
{key:"choice",description:"Your choice: 'rock', 'paper' or 'scissors'"}
],
optional_params:[],
disabled: false,
required_role: null,
cooldown_time: null,
cooldown_time_isw_only: true,
isw_only: false,
}
];