Is that macro for the GIMX software?cldfusion wrote:Here's my auto script, it's got 2 modes(tactical,3rb) I don't really use it any more though...![]()
Code: Select all
#NoEnv #SingleInstance force #InstallKeybdHook #InstallMouseHook SendMode Input SetWorkingDir %A_ScriptDir% #IfWinActive Sixaxis Control FireMode=1 ;---Burst fire--- burst(shots,Br,Bp) ;shots are 0 based { sleep 50 send, {lbutton up} loop, %shots% { sleep %Br% send, {lbutton down} sleep 50 send, {lbutton up} } } ;---tactical--- Q:: { if (FireMode > 2) { FireMode=1 SoundPlay *16 } else { Firemode++ soundplay *64 sleep 150 if (FireMode = 3) { soundplay *64 } } } return ~lbutton:: { If (FireMode = 2) { Burst(0,1,200) } If (FireMode = 3) { Burst(4,20,200) } } return
Or something else.
I am a noob when it comes to coding D=