Rapid Fire
well im having trouble getting my auto hot key scripts to work in this game, i wanna make a rapid fire program... any suggestions, or help ?
currently this is my autohotkey script:
THANK ME! NAO!!
currently this is my autohotkey script:
Code:
#NoEnv
#SingleInstance force
SendMode Input
Lbutton::
Loop
{
GetKeyState, state, Lbutton, P
if state=U
break
Sendinput {Click Down}
Sleep 35
Sendinput {Click Up}
Sleep 35
}
;Pauses AutoHotKey Script.
F6::Pause, Toggle, 1
