-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathconfig.json.template
59 lines (57 loc) · 1.43 KB
/
config.json.template
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
{
"working_directory": "./active",
"discord_token": "TOKEN GOES HERE",
"discord_tagline": "good evening",
"message_search_count": 15,
"command_chain_limit": 3,
"max_concat_count": 3,
"unspecified_default_timeout": 5,
"default_guild_timeouts": {
"destroy": 10,
"concat": 12,
"download": 15,
"help": 1
},
"default_user_timeouts": {
"destroy": 15,
"concat": 20,
"download": 30,
"help": 3
},
"custom_guild_timeouts": {
// "some guild id here": {
// "default": 0
// }
},
"custom_user_timeouts": {
// "some user id here": {
// "ghost": true, //has no effect on command timeouts
// "max_chain": 50
// }
},
"donor_guild_id": "donator guild id",
"donor_guild_check_seconds": 600,
"donor_teir_roles": {
"some role id here": {
"user": {
"max_chain": 5,
"timeout_multiplier": 0.5
},
"guild": {
"max_chain": 4,
"timeout_multiplier": 0.75
}
}
},
"response_messages": [
"these",
"are",
"random",
"messages",
"the",
"bot",
"will",
"say"
],
"meta_prefixes": ["veb", "videoeditbot", "destroy"]
}