You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
751 B
19 lines
751 B
13 years ago
|
PASS = "my_nickserv_pass"
|
||
|
CHANNEL = "#mywolfgame"
|
||
14 years ago
|
HOST = "irc.freenode.net"
|
||
13 years ago
|
PORT = 6667 # SSL not supported yet
|
||
|
NICK = "mywolfbot"
|
||
13 years ago
|
OWNERS = ("unaffiliated/wolfbot_admin1",) # the comma is required at the end if there is one owner
|
||
|
ADMINS = ("unaffiliated/wolfbot_admin2", "unaffiliated/wolfbot_admin3")
|
||
14 years ago
|
CMD_CHAR = "!"
|
||
13 years ago
|
CHANGING_HOST_QUIT_MESSAGE = "Changing host"
|
||
13 years ago
|
JOIN_AFTER_CLOAKED = True # Set to false if the bot does not have a cloak
|
||
|
DISABLE_DEBUG_MODE = False # Entirely disable debug mode
|
||
|
|
||
|
# Argument --debug means start in debug mode
|
||
|
import argparse
|
||
|
parser = argparse.ArgumentParser()
|
||
|
parser.add_argument('--debug', action='store_true')
|
||
|
|
||
|
args = parser.parse_args()
|
||
|
DEBUG_MODE = args.debug if not DISABLE_DEBUG_MODE else False
|