SolvedL> FAL Rapid Fire Script!

Posts 1–4 of 4 · Page 1 of 1
L> FAL Rapid Fire Script!
Hey guys!

I'd really appreciate it if you could help me locate a rapid fire script that doesn't max out the FAL. I've tried the ones here, but for some reason everytime I use it, my whole game lags up. People told me, that the script is going faster than the FAL's firerate.

Thanks!
You mean ur FAL stops shooting ? That happens when you shoot too fast ... Or u just start lagging ?
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
Quote Originally Posted by dz0 View Post
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
That has been confirmed
Posts 1–4 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?