Yet again im sure you guys are tired of these posts but will make it quick!
This is what i have so far. kind of a frankenstein of a few autofire scrips + a little of some stuff i know. If capslock is pressed it will toggle autofire if not it wont, also the autofire is random to get base the CoD: BO autofire blocking.... i think heh. Im using a Xim360 via a pc to use a keyboard and mouse for the xbox. Anyhow i think it all works ok apart from 1 little thing im probably doing something real stupid so advice is welcome. The problem is when L clicking its also pressing the capslock over and over and over. Can anyone give me a hand to stop this? Maby its not im not sure but on the logitech software i see capslock on/off flashing on the screen along with the caps led flashing.
Thanks a load
Alex
Code:
*$LButton::
GetKeyState, CapsState, CapsLock, T
If (CapsState = "D")
{
Loop
{
if not GetKeyState("LButton", "P")
{
break
}
else
{
Send {click}
Random, random, 125, 175
Sleep %random%
}
}
}
else
{
Click Down
}
return
*LButton Up::Click up