The money.toml file stores user balances for the economy system.

Template

members = {}

Structure

The members object stores user balances using Discord user IDs as keys:

members = { badluma = 100 }

Values

KeyValueDescription
membersdictThe dictionary that stores the money values.
username(s)intIs named after the user’s username and stores their balance.

Notes

  • This file is automatically managed by the bot
  • Manually editing is not recommended while the bot is running
  • Balances persist between bot restarts
  • balance - Check a user’s balance
  • add_money - Add money to a user (admin only)
  • remove_money - Remove money from a user (admin only)