-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
44 lines (32 loc) · 2.21 KB
/
config.toml
File metadata and controls
44 lines (32 loc) · 2.21 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
#################################################################################################################################################################################
# Bot Settings
# Used in certain embeds, can be different to the bot's actual name / nickname
Bot.Name = "TLEBot"
# Use / to enable slash commands. If you're using prefixes, we recommend ">" to avoid conflict.
Bot.Prefix = "/"
# Used for the info command. Supports Markdown. Leave blank to disable that command.
Bot.Description = "A bot created by **@BestSpyBoy**, designed specifically for the Luxury Elevator's official Discord server! Type `>help` to get started."
# Your brand color in a HEX color code, used in embeds. Add 0x so Python knows it's a HEX color.
Bot.BrandColor = 0xde8114
# The guilds / servers your bot will be enabled in. Leave blank to enable commands globally.
# To find the ID of a server, enable Developer Mode in settings and then right-click the server's icon.
Bot.EnabledGuilds = [
1129161619272908892, # TLEBotTesting
505807565146554398 # The Luxury Elevator
]
# A list of enabled modules. Find all available modules in the /commands/ folder.
Bot.Modules = [
"custom", # /bot/commands/custom.py
"wiki" # /bot/commands/wiki.py
]
# Changes every update. This shouldn't be edited unless you're forking your own version.
Bot.Version = "v1.3.3"
# You can change these if you really want, but I'd appreciate if they stay :)
Credit.Name = "BestSpyBoy"
Credit.Profile = "https://cdn.discordapp.com/avatars/725417693699899534/1fecf89ce5fefa638d2f273ed1d986aa.webp"
#################################################################################################################################################################################
# Module Settings
# For example, the Wiki module requires a variable called URL
Wiki.URL = "https://wiki.theluxuryelevator.com" # Change to your wiki domain, for example: "https://doors-game.fandom.com"
# You can also add a # symbol before a variable to disable it.
#################################################################################################################################################################################