Guest User

Untitled

a guest
May 20th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. $c:: ; c is the button to initiate rapidfire
  3. while GetKeyState("c", "P") ; While the F1 key is being held down physically. ; change "c" to whatever button you use
  4. {
  5. Send {x down} ; x is shoot button
  6. sleep 10 ; this is how long u want x held down for
  7. Send {x up}
  8. sleep 25 ; this is the pause between the first shot and the 2nd
  9. }
  10. return
  11.  
  12.  
  13.  
  14. return
Add Comment
Please, Sign In to add comment