Jaap
Jaap
I use something like this for Rage Bot: ``` for account in accounts: Thread(target=bot_thread, args=([account]), name=account.username).start() time.sleep(0.1) def bot_thread(account): asyncio.set_event_loop(asyncio.new_event_loop()) RageBot(account.username, account.password) ``` A couple of things to keep in...
I had a bunch of those but deleted them after they were implemented. Having these for registering an account would be nice.
Nice work! I took a shot at account registering, it's similar to current logging in. Validating first/last name ```xml [FIRST_NAME] [LAST_NAME] ``` Response for validating first/alst name ```xml [FIRST_NAME] [LAST_NAME]...
Thesea are the ones I could find. Promote ```xml [USER_JID]@talk.kik.com ``` Demote ```xml [USER_JID]@talk.kik.com ``` Remove ```xml [USER_JID]@talk.kik.com ``` Add ```xml [USER_JID]@talk.kik.com ``` Ban ```xml [USER_JID]@talk.kik.com ``` Unban ```xml [USER_JID]@talk.kik.com...
I have an idea but I'll take a look at it later on.