
Used for mk1 fov 85.
Quick peek script,this is made for quick peeking people when you stand up and shoot it automatically crouches youQuote:
#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

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.
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:
#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
Quote:
#NoEnv
SendMode Input
~CAPSLOCK::Suspend
~End::ExitApp
~RButton & ~LButton::
Loop
If GetKeyState("RButton", "LButton"") {
Sleep, 25
moveAmount := (moveAmount = 2) ? 3 : 0
mouseXY(moveAmount, 5.4)
}
else
break
Return
~LButton::
Loop
If GetKeyState("LButton"") {
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


