download autohotkey at autohotkey.com and right click on desktop and do new autohotkey script (should look like an A in a green box) now right click and click edit on the file you just made and paste this for cod 5
~F9::Suspend, Toggle
*lbutton::
Loop
{
GetKeyState, state, lbutton, P
if State = U
break
; Otherwise:
Send, {lbutton}
Sleep, .1
}
return
or paste this for cod 4
~F9::Suspend, Toggle
*lbutton::
Loop
{
GetKeyState, state, lbutton, P
if State = U
break
; Otherwise:
Send, {lbutton}
Sleep, 39
}
return
to change speed just change the sleep (lower the number the faster the speed)