-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
80 lines (80 loc) · 2.51 KB
/
config.json
File metadata and controls
80 lines (80 loc) · 2.51 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
{
"logLevel": 3,
"updateTime": 15,
"maxVoiceChannels": 3,
"text": {
"games": [
"with Node.js",
"on GitHub",
"with my repository",
"https://github.com/ApertaTeam/ApertaBot/"
]
},
"server": {
"enabled": true,
"port": 8080,
"password": "aperta_default_password",
"salt": "default_salt"
},
"commands": [
{
"name": "help",
"syntax": "[PREFIX]help <optional: command name>",
"description": "Gets help with commands and how to use the bot."
},
{
"name": "test",
"syntax": "[PREFIX]test",
"description": "Checks if the bot happens to be alive."
},
{
"name": "invite",
"syntax": "[PREFIX]invite",
"description": "Get the bot's invite link."
},
{
"name": "prefix",
"syntax": "[PREFIX]prefix <optional: new prefix>",
"description": "Change the prefix for the current server. Admin-only."
},
{
"name": "addbotadmin",
"syntax": "[PREFIX]addbotadmin @user1 <optional: more users>",
"description": "Make user(s) bot-admin. Admin-only."
},
{
"name": "removebotadmin",
"syntax": "[PREFIX]removebotadmin @user1 <optional: more users>",
"description": "Remove user(s) bot-admin status. Admin-only."
},
{
"name": "docs",
"syntax": "[PREFIX]docs [Class]#<optional: [subproperty]>\n[PREFIX]docs .[Typedef]",
"description": "Checks the Discord.js docs for the specified info."
},
{
"name": "eval",
"syntax": "[PREFIX]eval [javascript code]",
"description": "Runs javascript code. Admin-only."
},
{
"name": "joinvoice",
"syntax": "[PREFIX]joinvoice",
"description": "Joins the user's voice channel."
},
{
"name": "leavevoice",
"syntax": "[PREFIX]leavevoice",
"description": "Leaves the user's voice channel."
},
{
"name": "tag",
"syntax": "[PREFIX]tag <optional: options> tagname <optional: tag contents if creating a tag>",
"description": "Creates/Deletes/Views a specified tag saved to the user's guild."
}
],
"creatorIds": [
"293112796672163841",
"201785548900139009"
]
}