Chatroom Spambot

by Air_Assassin in Circuits > Computers

181 Views, 1 Favorites, 0 Comments

Chatroom Spambot

spambot.PNG

This is a simple chatroom spammer. You can use it it any chatroom, as long as you can messages with the enter button. Happy spamming, and don't annoy too many people!

The Code

spambot.PNG

Copy and paste this into notepad, and save it as a .vbs file

______________________________________

set shell = createobject("wscript.shell")

strtext = inputbox("Message :")

strtimes = inputbox("Number of times to spam")

if not isnumeric(strtimes) then

wscript.quit

end if

msgbox "You have 5 seconds to get to your inputbox."

wscript.sleep( 5000 )

for i=1 to strtimes

shell.sendkeys(strtext & "{enter}")

wscript.sleep(500)

next