Mire's macros: Battlefield Bad Company 2 Jitter fire

Опубликовано: 16 Май 2011
на канале: gazzmireful
4,300
13

Grab the .ahk script here ready to run: http://www.mediafire.com/?yltb8umw013...

Remember to have Autohotkey, grab basic: http://www.autohotkey.com/download/

If you want to see me other macros look through my vids or go to my
mediafire folder to download everyone!: http://www.mediafire.com/mire

So home key enables or disables it in game, this will run whenever the script is activated so don't forget about it
-------------------------------------------------------------------------------------


#SingleInstance
ActivateScript = 0




~Home::
KeyWait, Home
GetKeyState, HomeState, Home, T
If HomeState = D
{
ActivateScript = 1

}
else
{
ActivateScript = 0

}
return

~LButton::
if ActivateScript = 1
{
Loop

{
GetKeyState, LButtonButtonState, LButton, P
If LButtonButtonState = D
{
send, {LButton down}
sleep, 10
send, {LButton up}
sleep, 20
send, {1 down}
sleep, 20
send, {1 up}
sleep, 20
send, {2 down}
sleep, 20
send, {2 up}
sleep, 520
}
If LButtonButtonState = U
{

break
}
}

{

}
}


exit

return