2019-10-03 22:17:36 -04:00
|
|
|
##########################################################
|
|
|
|
# #
|
|
|
|
# ¡ This is a template ! #
|
|
|
|
# #
|
|
|
|
# Make sure to edit it with your preferred settings! #
|
2019-11-25 05:43:20 -05:00
|
|
|
# And to place it in the /data #
|
|
|
|
# subdirectory of the bot, #
|
2019-10-03 22:17:36 -04:00
|
|
|
# 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
|
|
|
|
2019-12-07 17:26:55 -05:00
|
|
|
# The extensions to load when running the bot.
|
2019-12-11 18:17:27 -05:00
|
|
|
exts = ['ae7q', 'base', 'fun', 'grid', 'ham', 'image', 'lookup', 'morse', 'qrz', 'study', 'weather']
|
2019-10-08 23:02:57 -04:00
|
|
|
|
|
|
|
# The text to put in the "playing" status.
|
|
|
|
game = 'with lids on 7.200'
|
2019-12-23 20:51:31 -05:00
|
|
|
|
|
|
|
# A :pika: emote's ID, None for no emote :c
|
|
|
|
pika = 658733876176355338
|