The config.toml file contains basic bot configuration settings.

Template

command_prefix =  "!"
settings_prefix = "s!"
music_prefix    = "m!"
 
money_symbol    = "$"
bot_admins      = []
ascii_art       = [\\_(ツ)_/¯"]
 
debug_mode      = false

Values

Command Prefixes

ValueTypeDescription
command_prefixstringThe prefix used to invoke regular commands
settings_prefixstringThe prefix used to invoke settings commands
music_prefixstringThe prefix used for music commands (currently unused)

Money

ValueTypeDescription
money_symbolstringThe symbol used to display currency amounts
bot_adminslistList of Discord user IDs who have admin access to bot commands

Fun

ValueTypeDescription
ascii_artlistList of ASCII art strings that the ascii command randomly returns

Debug

ValueTypeDescription
debug_modebooleanEnables debug mode for development

Examples

Change command prefix

command_prefix = "?"

Add bot admin

bot_admins = [123456789012345678]

Add custom ASCII art

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