Advertisement
JumpYScriptsz

counter in VBScript

Jul 16th, 2021 (edited)
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 'counter (pastes numbers)
  2.  
  3. StartNum = 0 'starrting number
  4. StopNum = 100 'the script stops at this number
  5.  
  6. a = 815 'fastest it can paste the numbers in discord (for counting channels) b4 discord tells us to slow down
  7. b = 150 'hit enter delay
  8. WScript.Sleep 2000
  9. set wshshell = wscript.CreateObject("wscript.shell")
  10.  
  11. Dim x
  12. x=StartNum
  13. Do While x<StopNum
  14. x=x+1
  15. wscript.sleep 55
  16. WshShell.SendKeys x
  17. wscript.sleep 55
  18. WshShell.SendKeys "{ENTER}"
  19. Loop
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement