Guest User

steam blaster rapid fire script

a guest
May 21st, 2020
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ; Save this as steamblaster.ahk in Notepad or something.
  2. f2::Suspend ; Press F2 to toggle on/off
  3. LButton::
  4. Loop
  5. {
  6. SetMouseDelay 20
  7. Click down
  8. sleep 100
  9. Send {E down} ; NOTE: Replace E with your healing hose ability button if you're using another key for that ability.
  10. sleep 100
  11. Send {E up} ; NOTE: Replace E with your healing hose ability button if you're using another key for that ability.
  12. sleep 200
  13. Click up
  14. sleep 25
  15. If (GetKeyState("LButton","P")=0)
  16. Break
  17. }
  18. Return
Advertisement
Add Comment
Please, Sign In to add comment