Instant Messaging Spammer
CODE:::
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 3 seconds to get to your destination to spam"
wscript.sleep(3000)
for i=1 to strtimes
shell.sendkeys(strtext & "{enter}")
wscript.sleep(500)
next
WHEN DONE SAVE AS: SPAMMER.VBS
OR ANYTHING MAKE SURE .VBS IS AFTER THE NAME
Link to this comment:
All Comments (0)