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
|
{
"commands": {
"channelPermissions": {
"description": {
"content": "Use to mass change the channel permissions."
},
"args": {
"target": {
"start": "What user/role would you like to change?",
"retry": "{error} Choose a valid user/role to change."
},
"permission": {
"start": "What permission would you like to change?",
"retry": "{error} Choose a valid permission."
},
"state": {
"start": "What should that permission be set to?",
"retry": "{error} Set the state to either `enable`, `disable`, or `remove`."
}
}
},
"roleAll": {
"description": {
"content": "Give a role to every member on the server."
},
"args": {
"role": {
"start": "What role would you like to give to every member on the server?",
"retry": "{error} Pick a valid role."
},
"bots": {
"start": "Would you like to also give roles to bots?"
}
}
},
"blacklist": {
"description": {
"content": "A command to blacklist users and channels."
},
"args": {
"action": {
"start": "Would you like to add or remove someone or something from/to the blacklist?"
},
"target": {
"start": "What channel or user that you would like to blacklist/unblacklist?",
"retry": "{error} Pick a valid user or channel."
}
}
},
"config": {
"description": {
"content": "Configure server settings."
}
}
}
}
|