banned/botconfig.py.example
Janik Kleinhoff c611db5109 botconfig.py.example: improve example values
* there is no good reason *not* to use SSL;
* the example config assumes freenode, where a wolfgame channel would be
  expected to use the double-# namespace; if we're going to suggest
  a network to use, our example should follow their policy, too.
2014-12-19 21:52:12 +00:00

30 lines
1.1 KiB
Plaintext

PASS = "my_nickserv_pass"
CHANNEL = "##mywolfgame"
HOST = "irc.freenode.net"
PORT = 6697
USERNAME = "" # for authentication, can be left blank if same as NICK
NICK = "mywolfbot"
IDENT = NICK
REALNAME = NICK
CMD_CHAR = "!"
CHANGING_HOST_QUIT_MESSAGE = "Changing host"
SASL_AUTHENTICATION = False # put account name in USERNAME ^ if different from nick
USE_SSL = True
DISABLE_DEBUG_MODE = False # Entirely disable debug mode
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 = False # allow !command's from /notice (Private)
ALLOWED_NORMAL_MODE_COMMANDS = [] # debug mode commands to be allowed in normal mode
OWNERS = ("unaffiliated/wolfbot_admin1",) # the comma is required at the end if there is one owner
ADMINS = ("unaffiliated/wolfbot_admin2", "unaffiliated/wolfbot_admin3") # glob syntax supported (wildcards)
OWNERS_ACCOUNTS = ("1owner_acc",)
ADMINS_ACCOUNTS = ("1admin_acc", "2admin_acc")
ALT_CHANNELS = ""
ALLOWED_ALT_CHANNELS_COMMANDS = []