MW2 Rapidfire script (AHK)
Hello dair. Here is another MW2 script
DoFiringLoop:
Code:
if gActivateScript = 1
{
Loop
{
MouseClick, left,,, 1, 0, D
;delay between simu. mouse btn down and up
Sleep, 0
MouseClick, left,,, 1, 0, U
GetKeyState, LButtonState, LButton, P
If LButtonState = U
{
;break the loop if physical state of mouse btn is up.
break
}
;delay between each simu. click events
Sleep, 0
}
}
exit
return
Be aware that with the script active (toggled on), any active window will receive the micro. It will be like you are double clicking everything.
Maybe read the instructions on how to use AHK scripts?