here's 1 I have toyed with, Its not my work - I just edited the sleep settings, either 39 or 40 seems to work well with the FAL.
just create a new script with AHK, open/edit the script copy and paste the below into the new ahk script ( start from the #) , save as FAL RF.AHK and thats it, ohh F1 exits script
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
Numlock::_auto := ! _auto
F1::ExitApp
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 39
mouseXY(0, 1)
SendInput {LButton Up}
Sleep 39
}
else
break
} ;; loop
} ;; if
} ;; autofire()
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,in t,0)
}
the FAL seems to have a faster fire rate when finger tapping the mouse instead of the auto option, others fire less rounds/min with suppressor fitted also