Chatroom Spambot
![spambot.PNG](/proxy/?url=https://content.instructables.com/FPI/LCF3/I28W9NBJ/FPILCF3I28W9NBJ.png&filename=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](/proxy/?url=https://content.instructables.com/FYZ/QKA7/I28W9MRN/FYZQKA7I28W9MRN.png&filename=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