-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc.json
58 lines (58 loc) · 1.43 KB
/
doc.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
{
"name": "Discord",
"description": "Send discord messages between Brickadia and Discord",
"author": "Aware",
"commands": [
{
"name": "!setEmoji",
"description": "Sets user's emoji to specific emoji",
"example": "!setEmoji rlcbm :clock:",
"args": [
{
"name": "name",
"description": "Exact name of person getting whos emoji is being set",
"required": true
},
{
"name": "emoji",
"description": "Emoji, wrap in colons :emoji_name:, for server specific emojis use the syntax <:emoji_name:emoji_id>",
"required": false
}
]
},
{
"name": "!resetEmoji",
"description": "Randomizes user's emoji",
"example": "!resetEmoji rlcbm",
"args": [
{
"name": "name",
"description": "Exact name of person getting whos emoji is being set",
"required": true
}
]
}
],
"config": {
"access": {
"description": "Comma separate list of users who can set users emojis",
"default": "",
"type": "string"
},
"token": {
"description": "Discord bot token",
"default": "",
"type": "password"
},
"channel": {
"description": "Channel ID (18 digits)",
"default": "",
"type": "string"
},
"status": {
"description": "Status of the bot",
"default": "",
"type": "string"
}
}
}