perazite

DAYZ Autorun

Feb 20th, 2014
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #NoEnv
  2. #SingleInstance Force
  3. #IfWinActive ahk_class ArmA 2 OA
  4.  
  5. Running = 0
  6.  
  7. ~`::
  8. Gosub, ToggleRun
  9. Return
  10.  
  11. ToggleRun:
  12. if Running = 0
  13. {
  14. Send {w Down}
  15. Running = 1
  16. }
  17. else
  18. {
  19. Send {w Up}
  20. Running = 0
  21. }
Add Comment
Please, Sign In to add comment