Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #IfWinActive, ahk_class Arma 3
  2. #NoEnv
  3. SendMode Input
  4. SetWorkingDir %A_ScriptDir%
  5.  
  6. ; Made by L9 Tiger Jimbo and Haych
  7. ; F1 to toggle No Recoil on and Off
  8. NRA := 1
  9.  
  10. ; SS
  11. F1::Suspend
  12.  
  13. ; NR
  14. ~LButton::
  15. while GetKeyState("LButton") & NRA
  16. {
  17. DllCall("mouse_event", uint, 1, int, 0, int, 3, uint, 0, int, 0)
  18. Sleep, 15
  19. DllCall("mouse_event", uint, 1, int, 0, int, 4, uint, 0, int, 0)
  20. Sleep, 5
  21. }
  22. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement