JackHaxor

BOT Spam Sky

Jan 19th, 2018
487
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. set shell = createobject ("wscript.shell")
  2. 'extention_type=".vbs" (Visual Basic Script)
  3. 'msgbox "Copyright 2014 Glitch."
  4. strtext = inputbox("Enter the message you want to send in the box below. No longer than 100 characters.")
  5. strtimes = inputbox("Now, enter the ammount of messages you want to send in the box below. Do not go above 500.")
  6. strtdelay = inputbox("How much time should the bot wait in between messages? Enter your value in the box below, in seconds. Decimal points ARE allowed. No less than 0.1.")
  7. if not isnumeric(strtimes) then
  8. wscript.quit
  9. end if
  10. msgbox "Make sure Skype is started up. Once you hit ok, you will have 5 seconds to get to the inputbox on Skype."
  11. wscript.sleep( 5000 )
  12. for i=1 to strtimes
  13. shell.sendkeys(strtext & "{enter}")
  14. wscript.sleep(strdelay)
  15. next
Advertisement
Add Comment
Please, Sign In to add comment