The config.toml file contains the basic settings for your bot.

Template

prefix         = "!"
 
money_symbol   = "$"
ascii_art      = [\\_(ツ)_/¯"]
bot_admins     = []
 
debug_mode     = false
 
whitelist      = []
whitelist_mode = false

Values

ValueTypeDescription
prefixstringThe prefix used to invoke all commands
money_symbolstringThe symbol displayed next to money amounts
bot_adminslistDiscord user IDs that have bot admin access
ascii_artlistASCII art strings that !ascii randomly returns
debug_modebooleanRun moderation checks on admin and bot messages too (for testing)
whitelistlistChannel IDs the bot is limited to when whitelist mode is on
whitelist_modebooleanRestrict the bot to only respond in whitelisted channels

Examples

Change command prefix

prefix = "?"

Add bot admins

bot_admins = [123456789012345678, 987654321098765432]

Add custom ASCII art

ascii_art = [\\_(ツ)_/¯", "( ͡° ͜ʖ ͡°)", "┬─┬ノ( º _ ºノ)"]

Restrict the bot to specific channels

whitelist      = [123456789012345678, 987654321098765432]
whitelist_mode = true