- Joined
- Jun 3, 2014
- RedCents
- 98¢
Are there boolean conditions to check if a macro is running and/or paused (mqp)? trying to find them and maybe put them into an mq2melee flag
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

(although, honestly, I don't know if I ever ran into that issue before)Macro1=3,110,111,0,250,0,${If[${Macro.Name.NotEqual["NULL"]},${Macro.Name},]}
Macro2=3,10,111,225,250,225,MACRO RUNNING =
have a MQ2HUD line to show the name of the currently running macro. And if it is my usual macro, have another line to tell if it's pause function is engaged.
Rich (BB code):Macro1=3,110,111,0,250,0,${If[${Macro.Name.NotEqual["NULL"]},${Macro.Name},]} Macro2=3,10,111,225,250,225,MACRO RUNNING =
Macro1=3,4,600,100,0,255,0,${If[${Macro.Name.NotEqual["NULL"]} && ${Macro.Paused},${Macro.Name} PAUSED,${If[${Macro.Name.NotEqual["NULL"]}, ${Macro.Name},]}]}
