Twitch Spam Bot | Python 10-04-2015, 10:53 PM
#1
Use http://koding.com to use it to spam with.
![[Image: 441b896f64c375f2dc6aaaec4129ae21.png]](https://i.gyazo.com/441b896f64c375f2dc6aaaec4129ae21.png)
[hide]
import socket
import time
from random import randint
import threading
def joinTwitch(channel, username, oauth):
try:
socketz = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socketz.connect(('irc.twitch.tv', 6667))
socketz.send('PASS oauth:' + oauth + '\r\n')
socketz.send('USER ' + username + ':' + username + '\r\n')
socketz.send('NICK ' + username + '\r\n')
print socketz.recv(1024)
socketz.send('JOIN #' + channel + '\r\n')
while 1:
# idk
socketz.recv(1024)
socketz.send('PRIVMSG #' + channel + ' :/me Join RealityForum(dot)net realityforum.net <= [' + str(randint(1, 10000)) + ']\r\n')
# limit
time.sleep(1)
except:
time.sleep(10)
joinTwitch(channel, username, oauth)
channel = raw_input('Channel to raid:')
userFile = open('users.txt', 'r').read()
userSplit = userFile.split(chr(10))
for user in userSplit:
userData = user.split(':')
username = userData[0]
oauth = userData[1]
twitchThread = threading.Thread(target=joinTwitch, args=(channel, username, oauth,))
twitchThread.start()
[/hide]
Here's a few accounts, KING users have 16k in the section C:
Put these in a users.txt file in the same directory as the python script.
[hide]
http://pastebin.com/8rCHJjfd
[/hide]
![[Image: 441b896f64c375f2dc6aaaec4129ae21.png]](https://i.gyazo.com/441b896f64c375f2dc6aaaec4129ae21.png)
[hide]
import socket
import time
from random import randint
import threading
def joinTwitch(channel, username, oauth):
try:
socketz = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socketz.connect(('irc.twitch.tv', 6667))
socketz.send('PASS oauth:' + oauth + '\r\n')
socketz.send('USER ' + username + ':' + username + '\r\n')
socketz.send('NICK ' + username + '\r\n')
print socketz.recv(1024)
socketz.send('JOIN #' + channel + '\r\n')
while 1:
# idk
socketz.recv(1024)
socketz.send('PRIVMSG #' + channel + ' :/me Join RealityForum(dot)net realityforum.net <= [' + str(randint(1, 10000)) + ']\r\n')
# limit
time.sleep(1)
except:
time.sleep(10)
joinTwitch(channel, username, oauth)
channel = raw_input('Channel to raid:')
userFile = open('users.txt', 'r').read()
userSplit = userFile.split(chr(10))
for user in userSplit:
userData = user.split(':')
username = userData[0]
oauth = userData[1]
twitchThread = threading.Thread(target=joinTwitch, args=(channel, username, oauth,))
twitchThread.start()
[/hide]
Here's a few accounts, KING users have 16k in the section C:
Put these in a users.txt file in the same directory as the python script.
[hide]
http://pastebin.com/8rCHJjfd
[/hide]
[img=0x150]http://imgur.com/BD5LxZb.png[/img]
I'm done being an autism.
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)


