From 75814d6b8085f6b05870e6ec1bfc301a1d3a5e6c Mon Sep 17 00:00:00 2001 From: yvesf Date: Wed, 10 Jun 2009 09:13:32 +0000 Subject: yiha git-svn-id: http://xapek.org/svn/common/omegle@1100 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- megahal_bot.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'megahal_bot.py') 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" -- cgit v1.2.1