Add echo support.

This commit is contained in:
AZ Huang 2014-01-03 03:41:35 +08:00
parent 3ed2869a2f
commit c9d444c93f
1 changed files with 4 additions and 1 deletions

View File

@ -93,7 +93,8 @@ class SyncBot(Tox):
msg = '%s> %s' % rx.groups()
content = rx.group(2)
if content == '^syncbot':
if content == '^syncbot' or \
content == '^echobot':
self.irc.send('PRIVMSG %s :%s\r\n' %
(CHANNEL, self.get_address()))
elif content[1:].startswith('ACTION '):
@ -150,6 +151,8 @@ class SyncBot(Tox):
if message == 'invite':
print('Inviting %s' % self.get_name(friendid))
self.invite_friend(friendid, self.tox_group_id)
else:
self.ensure_exe(self.send_message, (friendid, message))
t = SyncBot()
t.loop()