summaryrefslogtreecommitdiff
path: root/megahal_bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'megahal_bot.py')
-rw-r--r--megahal_bot.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/megahal_bot.py b/megahal_bot.py
index 26f5d17..48b8250 100644
--- a/megahal_bot.py
+++ b/megahal_bot.py
@@ -43,7 +43,7 @@ class MegahalBot(OmegleChat):
def on_connect(self):
print self.c("%s [EVT] %s Connection confirmed" % (time.strftime("%H:%M:%S"), self.name))
- self.send("Hi!")
+ self.send(u"Hi %s!" % self.name)
def on_disconnect(self):
@@ -66,7 +66,8 @@ if __name__ == "__main__":
c+=1
if c%20==0:
print "%s%s/%s" % ("\033[2K\033[E",c,len(messages)),
- mh_python.learn(message[0])
+ #XXX pass massage[0] to mh and end with a fucked up python
+ mh_python.learn("%s " % (message[0]))
print ""
cur.close()
@@ -76,16 +77,17 @@ if __name__ == "__main__":
print "press ctrl-c to abort"
event = Event()
- bot=MegahalBot(event,"A",ma_host="localhost:8082",color=colors['red'])
+ #bot=MegahalBot(event,"A",ma_host="localhost:8082",color=colors['red'])
+ bot=MegahalBot(event,"A",color=colors['red'])
bot.start()
try:
- while True:
- event.wait(0.5)
- if event.isSet():
- print "partner"
- break
+ while True:
+ event.wait(0.5)
+ if event.isSet():
+ print "partner"
+ break
except KeyboardInterrupt:
print "CTRL-C pressed, exiting"