Mire's Macros: MW2 silent shot macro

Опубликовано: 19 Июль 2011
на канале: gazzmireful
6,910
20

In the AHK script (Pause Break) is the on and off key ingame. Left mouse button is fire.


Here is the script. Remember to either change your melee to the E key, or to change the script to match your keys: http://www.mediafire.com/?r9lbklpkg9r...

To see all my uploaded ahk scripts go here: http://www.mediafire.com/mire
Get autohotkey,if you don't already have it, here: http://www.autohotkey.com/download/

If you're using logitech software just enter the timings in the video.

If you want to make the macro yourself the coding is below:

________________________________________________________


GroupAdd, ActiveWindow, ahk_class IW4

~Pause::suspend
return

~Lbutton::
{
Send, {Lbutton down}
Sleep, 5
Send, {Lbutton up}
Sleep, 10
Send, {E down}
Sleep, 180
Send, {1 down}
Sleep, 50
Send, {1 up}
Sleep, 50
Send, {E up}
}

return