2019-10-03 22:17:36 -04:00
|
|
|
##########################################################
|
|
|
|
# #
|
|
|
|
# ¡ This is a template ! #
|
|
|
|
# #
|
|
|
|
# Make sure to edit it with your preferred settings! #
|
|
|
|
# And to place it in the root of the bot's folder, #
|
|
|
|
# without the 'template_' part of the name #
|
|
|
|
# #
|
|
|
|
##########################################################
|
2019-10-04 11:39:12 -04:00
|
|
|
"""
|
|
|
|
Settings and options for the bot.
|
|
|
|
---
|
|
|
|
"""
|
2019-10-03 22:17:36 -04:00
|
|
|
|
2019-10-07 12:17:52 -04:00
|
|
|
# The prefix for the bot (str). Define a list of stings for multiple prefixes.
|
|
|
|
# ie: `["?", "!", "pls "]`
|
2019-10-03 22:17:36 -04:00
|
|
|
prefix = "?"
|
2019-10-07 12:17:52 -04:00
|
|
|
|
|
|
|
# Whether the bot should print full stacktraces for normal exceptions: `True`,
|
|
|
|
# or be nice and only print small messages: `False` (the default).
|
2019-10-03 23:08:08 -04:00
|
|
|
debug = False
|
2019-10-07 12:17:52 -04:00
|
|
|
|
|
|
|
# A tuple of user IDs that should be considered "bot owners".
|
|
|
|
# * Those users will have full control over the bot.
|
|
|
|
# ! This MUST be a tuple of integers. Single element tuple: `(123,)`
|
|
|
|
owners_uids = (200102491231092736,)
|
2019-10-08 23:02:57 -04:00
|
|
|
|
|
|
|
# The cogs to load when running the bot.
|
|
|
|
cogs = ['basecog', 'morsecog', 'funcog', 'gridcog', 'hamcog', 'imagecog',
|
2019-10-12 20:30:11 -04:00
|
|
|
'studycog', 'ae7qcog']
|
2019-10-08 23:02:57 -04:00
|
|
|
|
|
|
|
# The text to put in the "playing" status.
|
|
|
|
game = 'with lids on 7.200'
|