Advertisement
rhoparkour

Autohotkey SFV

Jul 19th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #IfWinActive StreetFighterV
  2. #HotkeyInterval 100
  3.  
  4. $v::
  5. stopit = 0
  6. settimer, kickdown, 500
  7. gosub, kickdown
  8. return
  9.  
  10. $c::
  11. stopit = 1
  12. icrush = 0
  13. settimer, kickdown, off
  14. return
  15.  
  16. kickdown:
  17. loop, 50
  18. {
  19. send, {b down}
  20. sleep, 50
  21. send, {b up}
  22. sleep, 100
  23. send, {Down down}
  24. sleep, 50
  25. send, {Down up}
  26. sleep, 50
  27. if stopit = 1
  28. {
  29. break
  30. }
  31. }
  32. sleep, 50
  33. return
  34.  
  35. #IfWinActive
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement