Let scrappy auto-identify to nickserv if you give it a password
[scrappy.git] / modules / config.py
blobce3aff4da8bbefdbb1e87cf6f3e4b72bb0fdd289
1 # Module that implements config file functionality for scrappy
3 import sys
5 def __init__(scrap):
6 print "Loading Configuration\n"
7 scrap.configing = True
9 #replace these with whatever your bot
10 #username and password are
11 scrap.username = "scrappy"
12 scrap.nickservpass = "121212"
14 #identify with nickserv or not
15 scrap.identify = True