63 lines
2.1 KiB
Plaintext
63 lines
2.1 KiB
Plaintext
HOST = "chat.freenode.net"
|
|
PORT = 6697
|
|
USE_SSL = True
|
|
NICK = "mywolfbot"
|
|
IDENT = NICK
|
|
REALNAME = NICK
|
|
USERNAME = "" # For authentication; can be left blank if the same as NICK.
|
|
PASS = "my_nickserv_pass"
|
|
SASL_AUTHENTICATION = True
|
|
|
|
CHANNEL = "##mywolfgame"
|
|
|
|
CMD_CHAR = "!"
|
|
|
|
|
|
OWNERS = ("unaffiliated/wolfbot_admin1",) # The comma is required at the end if there is only one owner.
|
|
ADMINS = ("unaffiliated/wolfbot_admin2", "unaffiliated/wolfbot_test*")
|
|
|
|
OWNERS_ACCOUNTS = ("1owner_acc",)
|
|
ADMINS_ACCOUNTS = ("1admin_acc", "2admin_acc")
|
|
|
|
|
|
DISABLE_DEBUG_MODE = False # Entirely disable debug mode
|
|
|
|
ALLOWED_NORMAL_MODE_COMMANDS = [] # Debug mode commands to be allowed in normal mode
|
|
|
|
ALT_CHANNELS = ""
|
|
ALLOWED_ALT_CHANNELS_COMMANDS = []
|
|
|
|
DEV_CHANNEL = ""
|
|
PASTEBIN_ERRORS = False # If DEV_CHANNEL is set, errors will be posted there.
|
|
|
|
|
|
IGNORE_HIDDEN_COMMANDS = True # Ignore commands sent to @#channel or +#channel
|
|
ALLOW_NOTICE_COMMANDS = False # Allow "/notice #channel !command" to be interpreted as a command
|
|
ALLOW_PRIVATE_NOTICE_COMMANDS = True # Allow "/notice botnick command" to be interpreted as a command
|
|
|
|
CHANGING_HOST_QUIT_MESSAGE = "Changing host"
|
|
|
|
|
|
USE_UTC = True # If True, logs will use the UTC time, else local time.
|
|
|
|
# %Y is the year, %m is the month, %d is the day, %H = hour, %M = minute, and %S = seconds.
|
|
# {tzname} and {tzoffset} can both be used - the timezone name (like UTC) and offset (+0000), respectively.
|
|
TIMESTAMP_FORMAT = "[%Y-%m-%d %H:%M:%S{tzoffset}]"
|
|
|
|
|
|
# This doesn't need to be changed unless you're running the bot on a network with a non-standard
|
|
# services setup.
|
|
#
|
|
# An example configuration for Undernet is provided below; if you're running the bot on Undernet,
|
|
# you can simply uncomment the following lines. For other networks, you can set the appropriate
|
|
# values manually.
|
|
#
|
|
# Note: Do not put the account and password here; they will be automatically substituted
|
|
# from the USERNAME (or NICK) and PASS variables on the top of the file.
|
|
|
|
#NICKSERV = "x@channels.undernet.org"
|
|
#NICKSERV_IDENTIFY_COMMAND = "LOGIN {account} {password}"
|
|
#NICKSERV_GHOST_COMMAND = ""
|
|
#NICKSERV_RELEASE_COMMAND = ""
|
|
#NICKSERV_REGAIN_COMMAND = ""
|