forked from Zaruike/Musicalpha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.js
79 lines (59 loc) · 2.35 KB
/
help.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
const commands = module.exports = {
'help': `
~help [command]
Brings up the command page. Pass a command for further information.`,
'choose': `
~choose <arg1> | [arg2] ...
Randomly chooses between the provided choice(s).`,
'prune': `
~prune <amount> [options]
Prunes the last <amount> messages.
Options:
[--bots] : Only prunes bot messages.
[--user <name>] : Only prunes messages by the specified user.
[--filter <string>] : Only prunes messages with the specified string.
[--pinned | -p] : Also prunes pinned messages.
[--silent | -s] : Deletes command and doesn't display results.`,
'role': `[Role Help]
~role give <role[,...]> : Gives role(s).
~role take <role[,...]> : Removes role(s).
~role modify <role> : Modifies a role.
#Options
give|take
[--bots] : Only change roles for bots.
[--users] : Only change roles for users.
[--user <user[,...]>] : Only change roles for specified users.
[--inrole <role>] : Change roles for everyone with the role.
[--notinrole <role>] : Change roles for everyone without the role.
[--noroles] : Change roles for everyone with no roles.
modify
[--name <name>] : Rename role.
[--color <color>] : Change role color. (6 digit HEX)`,
'music': `
[Music Help]
~music | m <function>
play <url> | <search> : Adds the song/playlist to the queue.
skip : Skips the current song.
pause : Pauses the song.
resume : Resumes the song.
queue : Displays the song queue.
purge : Clears the song queue.
np : Displays the title of the current song.
vol | v <0-100> : Sets volume.
join : Joins your voice channel.
leave : Leaves voice channel.
Requires a #music text channel.`,
'ban': `
~ban <mention> [options]
Bans the mentioned user.
You cannot ban users in a role higher.
Options:
[--days <number>] : Deletes the message history of the user.
[--reason <reason>] : Specifies a reason for banning the user.`,
'kick': `
~kick <mention> [options]
Kicks the mentioned user.
You cannot kick users in a role higher.
Options:
[--reason <reason>] : Specifies a reason for kicking the user.`
}