diff --git a/bot.py b/bot.py index ba93181..1dd3823 100644 --- a/bot.py +++ b/bot.py @@ -3,7 +3,6 @@ # Import some necessary libraries. import socket, sys, time, csv, Queue, random, re, pdb, select, os.path from threading import Thread -import ConfigParser # To configure bot, please make changes in bot_settings.py import bot_settings as settings diff --git a/bot_settings.py b/bot_settings.py index 847cf22..faea293 100644 --- a/bot_settings.py +++ b/bot_settings.py @@ -1,8 +1,8 @@ # Replace these default settings with your own personal settings # IRC configuration -channel = "#openhatch-unlogged" -botnick = "parsewelcomebot" +channel = "#openhatch" +botnick = "welcomebot" server = "irc.freenode.net" registered = False @@ -14,4 +14,4 @@ nick_source = "nicks.csv" # Bot text hello_list = ["hello", "hi", "hey", "yo", "sup"] help_list = ["help", "info", "faq", "explain_yourself"] -welcome_message = "Welcome! THe channel is pretty quiet right now, so I thought I'd say hello, and ping some people that you're here. If no one responds for a whle, try emailing us at hello@openhatch.org or just try coming back later. FYI, you're now on my list of known nicknames, so I won't bother you again." +welcome_message = "Welcome! The channel is pretty quiet right now, so I thought I'd say hello, and ping some people that you're here. If no one responds for a whle, try emailing us at hello@openhatch.org or just try coming back later. FYI, you're now on my list of known nicknames, so I won't bother you again."