Advertisement
Guest User

Path of Exile Flask Spam AutoIT Script.

a guest
Jun 8th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.46 KB | None | 0 0
  1. #include <MsgBoxConstants.au3>
  2.  
  3.  
  4. HotKeySet("^b","ExitProgram")
  5. HotKeySet("3","SpamFlask")
  6.  
  7.  
  8. Global $RandSleep
  9.  
  10. While 1
  11.     Sleep(100)
  12. WEnd
  13.  
  14.  
  15. Func RandomSleeper($RandSleep)
  16.  
  17.     $RandSleep = Random(5,200)
  18.  
  19.     Return $RandSleep
  20.  
  21. EndFunc
  22.  
  23. Func SpamFlask()
  24. Send("{F1}")
  25. Sleep($RandSleep)
  26. Send("{F3}")
  27. Sleep($RandSleep)
  28. Send("{F4}")
  29. Sleep($RandSleep)
  30. Send("{F6}")
  31. Sleep($RandSleep)
  32. Send("{F7}")
  33. EndFunc
  34.  
  35.  
  36. Func ExitProgram()
  37.  
  38.     Exit
  39. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement