Advertisement
Guest User

Arma 3 AHK No recoil pulldown script works on reborn

a guest
Mar 24th, 2018
1,332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ; scripted by Xander
  2. ; works for mk18 and other mk1 weapen
  3.  
  4. NRA := 2
  5.  
  6. g::Suspend
  7.  
  8. ~Lbutton::
  9.  
  10. ~Rbutton::
  11.  
  12. While ((L:=GetKeyState("LButton","P")) + (R:=GetKeyState("RButton","P")){
  13.  
  14. if L
  15.  
  16. {
  17. DllCal("mouse_event", uint, -1, int, -1, int, 40, uint, 0)
  18. Sleep, 1587
  19. DllCall("mouse_event", uint, 12, int, 120, int, 12, uint, 0)
  20. Sleep, 111
  21. }
  22.  
  23. else if (L && R)
  24.  
  25. {
  26. DllCall("mouse_event", uint, 1, int, -2, int, 34, uint, 1)
  27. Sleep, 5
  28. DllCall("mouse_event", uint, 1, int, -9, int, 6, uint, 1)
  29. Sleep, 500
  30.  
  31.  
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement