forked from chamburr/modmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.py
79 lines (61 loc) · 1.42 KB
/
config.example.py
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
# Bot's token
token = ""
# DiscordBotList token
dbl_token = ""
# Discord Bots token
dbots_token = ""
# Bots on Discord token
bod_token = ""
# Bots for Discord token
bfd_token = ""
# Discord Boats token
dboats_token = ""
# Sentry URL
sentry_url = ""
# Whether the bot is for testing, if true, stats and errors will not be posted
testing = True
# The default prefix for commands
default_prefix = "="
# Status of the bot
activity = [
f"DM to Contact Staff | {default_prefix}help",
]
# The main bot owner
owner = 000000000000000000
# Bot owners that have access to owner commands
owners = [
]
# Bot admins that have access to admin commands
admins = [
]
# Cogs to load on startup
initial_extensions = [
"cogs.admin",
"cogs.configuration",
"cogs.direct_message",
"cogs.error_handler",
"cogs.events",
"cogs.general",
"cogs.main",
"cogs.miscellaneous",
"cogs.modmail_channel",
"cogs.owner",
"cogs.premium",
]
# Channels to send logs
join_channel = 000000000000000000
event_channel = 000000000000000000
admin_channel = 000000000000000000
# This is where patron roles are at
main_server = 000000000000000000
# Patron roles for premium servers
premium1 = 000000000000000000
premium3 = 000000000000000000
premium5 = 000000000000000000
# The colour used in embeds
primary_colour = 0x1E90FF
user_colour = 0x00FF00
mod_colour = 0xFF4500
error_colour = 0xFF0000
# Version of bot
__version__ = "1.4.0"