2020-06-09 13:04:44 +00:00
|
|
|
# token is the Discord token for the bot
|
|
|
|
token = ""
|
|
|
|
|
|
|
|
# prefix is the bot command prefix
|
|
|
|
prefix = "!"
|
|
|
|
|
|
|
|
# mcm_token is the token for the MCM API
|
|
|
|
mcm_token = ""
|
|
|
|
|
2020-06-12 05:17:58 +00:00
|
|
|
# mcm_url is the base URL to the MCM API
|
2020-06-09 13:04:44 +00:00
|
|
|
mcm_url = ""
|
|
|
|
|
|
|
|
# db_path is the path to the database (default is next to binary)
|
|
|
|
db_path = "sedbot.db"
|
|
|
|
|
|
|
|
# fired_role is to check how many time Carolyn has been fired
|
|
|
|
fired_role = "0"
|
|
|
|
|
|
|
|
# register_role is the role to assign to a user after registering
|
|
|
|
register_role = "0"
|
|
|
|
|
|
|
|
# registered_channel is the channel to message to welcome the newly registered user
|
|
|
|
registered_channel = "0"
|
|
|
|
|
|
|
|
# staff_roles are for staff commands
|
|
|
|
staff_roles = []
|
|
|
|
|
2020-07-02 20:00:22 +00:00
|
|
|
# meme_rate is the rate limit for memes
|
|
|
|
meme_rate = "0"
|
|
|
|
|
|
|
|
# insults
|
|
|
|
# <args>, your <target> looks like <comparison>, you <adjective> <noun>
|
|
|
|
[insult]
|
|
|
|
targets = []
|
|
|
|
comparisons = []
|
|
|
|
adjectives = []
|
|
|
|
nouns = []
|
|
|
|
|
2020-06-12 16:38:18 +00:00
|
|
|
# echoes are any basic command -> message
|
|
|
|
[[echoes]]
|
2020-06-09 13:04:44 +00:00
|
|
|
name = "discord"
|
|
|
|
aliases = ["invite", "gib"]
|
2020-06-12 16:38:18 +00:00
|
|
|
message = "<https://birbmc.com/discord>"
|
|
|
|
help = "Get the invite link"
|
2020-06-09 13:04:44 +00:00
|
|
|
|
|
|
|
# message_roles are for messages that should toggle a role when a user selects it
|
|
|
|
[[message_roles]]
|
2020-06-12 05:17:58 +00:00
|
|
|
channel_id = "0"
|
2020-06-09 13:04:44 +00:00
|
|
|
message_id = "0"
|
|
|
|
role_id = "0"
|
|
|
|
emoji = "thumbsup"
|