Arma 3 AHK no recoil/pulldowns

01/08/2019 00:09 Du$ter#1
Here is some arma 3 ahks and pull downs :)

Used for mk1 fov 85.
Quote:
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

;
NRA := 1

; SS
CapsLock::Suspend

; NR
*~LButton::
while GetKeyState("LButton") & NRA
{
DllCall("mouse_event", uint, 1, int, -2, int, 2, uint, 1, int, 0)
Sleep, 98
DllCall("mouse_event", uint, 1, int, 1.75, int, 1, uint, 0, int, 0)
Sleep, 5
}
return
Quick peek script,this is made for quick peeking people when you stand up and shoot it automatically crouches you :)
Quote:
#IfWinActive, ahk_class Arma 3

3::Suspend

~$LButton::
KeyWait, LButton, T0.01
If (ErrorLevel)
{
while GetKeyState("LButton")
{
; if not GetKeyState("Space")
Send {Space Down}
KeyWait, LButton
Send {Space Up}
}
}
return

Very fast crouching.

Quote:
#IfWinActive, ahk_class Arma 3


3::Suspend
F10:: Hotkey, *~$Space, Toggle

F11::
ExitApp

*~$Space::
Sleep 1
Loop
{
GetKeyState, SpaceState, Space, P
If SpaceState = U
break
Sleep 170
Send, {Blind}{Space}
}
Return
Here is an scrip for fully auto weapons,it pulls your gun down while fully auto shooting at someone,play with sleep number depends on the gun you are using.

Quote:
#NoEnv
SendMode Input

~CAPSLOCK::Suspend

~End::ExitApp

~RButton & ~LButton::
Loop
If GetKeyState("RButton", "LButton&quot") {
Sleep, 25
moveAmount := (moveAmount = 2) ? 3 : 0
mouseXY(moveAmount, 5.4)
}

else
break

Return

~LButton::
Loop
If GetKeyState("LButton&quot") {
Sleep, 25
moveAmount := (moveAmount = 2) ? 3 : 0
mouseXY(moveAmount,2.0)
}

else
break
Return



mouseXY(x,y)
{
DllCall("mouse_event",int,1,int,x,int,y,uint,0,uin t,0)
}

Please leave a comment if this helped you.
Have fun:mofo::mofo::mofo:
01/13/2019 15:38 SnappyPotato#2
Is this detected now, I heard it was?!?
01/13/2019 20:57 Du$ter#3
Quote:
Originally Posted by SnappyPotato View Post
Is this detected now, I heard it was?!?
its not detected and it wont be so soon
01/17/2019 00:16 iamhere07#4
thanks for this
01/17/2019 00:25 CheatersNetwork#5
I would be very careful with AHK since it's a freeware tool and its detected/blocked in almost all "big" shooters. If you want to use macros then at least go for a paid provider with professional security features.

With AHK you are always deep risking a ban.
02/10/2019 21:37 manzap#6
thank you for this. but can you explain how the last scrip full auto work? i coudnt understand sorry
06/18/2019 21:41 Monkeysz#7
Pull downs in 2019
Now that’s a yikes
06/20/2019 21:52 Zaynez#8
Pulldown for Zaphir ?
07/24/2019 21:25 sopfryday#9
it does not work for me. Just the first script work
08/02/2019 04:39 .AHK#10
Would it work with 95 fov? if it cant could u edit the script to fit it