Advertisement
Guest User

Untitled

a guest
May 29th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. set shell = createobject ("wscript.shell")
  2.  
  3. strtext = inputbox ("Write down your message you like to spam")
  4. strtimes = inputbox ("How many times do you like to spam?")
  5. strspeed = inputbox ("How fast do you like to spam? (1000 = one per sec, 100 = 10 per sec etc)")
  6. strtimeneed = inputbox ("How many SECONDS do you need to get to your victims input box?")
  7.  
  8. If not isnumeric (strtimes & strspeed & strtimeneed) then
  9. msgbox "You entered something not numerical. Please Try Again"
  10. wscript.quit
  11. End If
  12. strtimeneed2 = strtimeneed * 1000
  13. do
  14. msgbox "You have " & strtimeneed & " seconds to get to your input area where you are going to spam."
  15. wscript.sleep strtimeneed2
  16. shell.sendkeys ("Spambot Is Starting" & "{enter}")
  17. for i=0 to strtimes
  18. shell.sendkeys (strtext & "{enter}")
  19. wscript.sleep strspeed
  20. Next
  21. shell.sendkeys ("Spambot (made by greig) Done" & "{enter}")
  22. wscript.sleep strspeed * strtimes / 10
  23. returnvalue=MsgBox ("Want to spam again with the same info?",36)
  24. If returnvalue=6 Then
  25. Msgbox "Ok Spambot Will Start Again"
  26. End If
  27. If returnvalue=7 Then
  28. msgbox "Made by Greig"
  29. wscript.quit
  30. End IF
  31. loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement