Advertisement
Guest User

Spammer

a guest
Nov 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. set a = createobject("wscript.shell")
  2.  
  3. mytxt=inputbox("Send what text?","Type some text","fgt")
  4. mynum=inputbox("How many times to send the text?","spamnumber","40")
  5. myspeed=inputbox("How fast to spam..In milisecs!","delay","20")
  6. mywait=inputbox("Time to wait proir to sending the spam msg in secs","Wait?","5")
  7.  
  8. msgbox("You have " & mywait & " secs to put focus on your target text area!")
  9. wscript.sleep (mywait*1000)
  10. for i=1 to mynum       
  11.     a.sendkeys (mytxt)  
  12.     a.sendkeys ("{ENTER}")  
  13.     wscript.sleep (myspeed)  
  14. next
  15. msgbox("Congrats you are a fgt")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement