-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
39 lines (39 loc) · 939 Bytes
/
config.json.example
File metadata and controls
39 lines (39 loc) · 939 Bytes
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
{
"token": "YOUR_DISCORD_BOT_TOKEN",
"clientId": "YOUR_BOT_CLIENT_ID",
"guildId": "YOUR_GUILD_ID",
"ownerId": "YOUR_DISCORD_USER_ID",
"activity": {
"name": "your server",
"type": "WATCHING"
},
"guilds": {
"YOUR_GUILD_ID": {
"enabled": true,
"logChannel": "LOG_CHANNEL_ID",
"adminRoles": ["ADMIN_ROLE_ID"],
"modRoles": ["MOD_ROLE_ID"],
"verification": {
"enabled": false,
"channel": "VERIFICATION_CHANNEL_ID",
"role": "VERIFIED_ROLE_ID",
"type": "button"
},
"security": {
"antiraid": false,
"lockdown": false,
"maxWarnings": 3
},
"tickets": {
"enabled": false,
"category": "TICKET_CATEGORY_ID",
"supportRole": "SUPPORT_ROLE_ID"
},
"voice": {
"enabled": false,
"category": "VC_CATEGORY_ID",
"template": "TEMPLATE_CHANNEL_ID"
}
}
}
}