-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.json
More file actions
158 lines (158 loc) · 4.45 KB
/
commands.json
File metadata and controls
158 lines (158 loc) · 4.45 KB
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
[
{
"name": "Vote",
"id": 1,
"discname": "vote",
"description": "Commands to manage submitted layouts",
"subcommands": [
{
"name": "submit",
"description": "Submit a level to be voted on."
},
{
"name": "dm",
"description": "Toggle DMs when your levels are voted on"
},
{
"name": "check",
"description": "See the current vote of your level"
}
]
},
{
"name": "List",
"id": 2,
"discname": "list",
"description": "Commands to manage levels on the list.",
"subcommands": [
{
"name": "place",
"description": "Place a level on the list"
},
{
"name": "edit",
"description": "Edit a level's info on the list"
},
{
"name": "move",
"description": "Move a level to a new position"
},
{
"name": "remove",
"description": "Remove/hide a level"
},
{
"name": "restore",
"description": "Restore a level to the list that was removed"
},
{
"name": "renameuser",
"description": "Rename a user on the site"
}
]
},
{
"name": "Records",
"id": 3,
"discname": "record",
"description": "Commands to manage record on the list.",
"subcommands": [
{
"name": "add",
"description": "Add a record to a level"
},
{
"name": "addlast",
"description": "Adds a record, but reuses the details of the previous record"
},
{
"name": "edit",
"description": "Edit a record's info"
},
{
"name": "delete",
"description": "Delete a record"
}
]
},
{
"name": "Packs",
"id": 4,
"discname": "pack",
"description": "Commands to manage packs on the list (wip).",
"subcommands": [
{
"name": "create",
"description": "Add a pack to the list"
},
{
"name": "edit",
"description": "Edit a pack's info"
},
{
"name": "remove",
"description": "Delete a pack"
}
]
},
{
"name": "Reliable",
"id": 5,
"discname": "reliable",
"description": "Commands to manage reliable votes",
"subcommands": [
{
"name": "yes",
"description": "Add a yes vote to this level and pin the message"
},
{
"name": "no",
"description": "Add a no vote to this level and pin the message"
},
{
"name": "accept",
"description": "Accept this level (change the thread name, ping the submitter)"
},
{
"name": "reject",
"description": "Reject this level (change the thread name, lock the thread, ping the submitter)"
}
]
},
{
"name": "Flag",
"id": 6,
"discname": "flag",
"description": "Commands to manage user's flags",
"subcommands": [
{
"name": "set",
"description": "Set a user's flag"
},
{
"name": "remove",
"description": "Remove a user's flag"
}
]
},
{
"name": "votemod",
"id": 7,
"discname": "votemod",
"description": "Command to manage levels in voting. You probably don't need these",
"subcommands": [
{
"name": "set",
"description": "Update the bot's stored info of a level in voting"
},
{
"name": "insert",
"description": "Insert an existing submission into the bot's system"
},
{
"name": "ban",
"description": "Submission ban/unban a user"
}
]
}
]