From 99681ec568fb057cabd12c24813ce71e0d7fe271 Mon Sep 17 00:00:00 2001 From: yvesf Date: Sat, 12 Dec 2009 23:38:51 +0000 Subject: clean git-svn-id: http://xapek.org/svn/common/omegle@1484 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd --- icqRoombot.tac | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 icqRoombot.tac (limited to 'icqRoombot.tac') diff --git a/icqRoombot.tac b/icqRoombot.tac new file mode 100644 index 0000000..2f6fba1 --- /dev/null +++ b/icqRoombot.tac @@ -0,0 +1,15 @@ +#!/usr/bin/env twistd +# vim: set ft=python sw=4 et syntax=python: + +from omegle.icq import ReconnectOscarFactory +from omegle.icqRoombot import ICQRoombot +from twisted.application import internet, service + +uin, password = ('370496181', 'megahal123') +host, port = ('login.oscar.aol.com', 5190) + +factory = ReconnectOscarFactory(ICQRoombot, uin, password, icq=1) + +application = service.Application('icqRoombot') +service = internet.TCPClient(host, port, factory) +service.setServiceParent(application) -- cgit v1.2.1