Pistol :
- Classic
- Short
- Ghost
- Sheriff
Sub :
- Stinger (aiming)
Rifles :
- Guardian
- Bulldog (aiming)
How to use :
Up Arrow hotkey On/OFF
Code:
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
~Numlock::_auto := ! _auto
~Up::Suspend
F12::ExitApp
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 1
mouseXY(0, 70)
Sleep 1
SendInput {LButton Up}
Sleep 25
}
else
break
} ;; loop
} ;; if
} ;; autofire()
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}






