Search found 4 matches

by Voland
Wed Dec 07, 2016 5:20 am
Forum: MQ2::Help
Topic: Can I restart my macro from within the macro?
Replies: 12
Views: 1388

Re: Can I restart my macro from within the macro?

I figured a workaround to restarting a macro within a macro. Instead of having /docommand /macro /bigmacro.mac in my simple.mac I put in /keypress = Where = goes to EQ shortcut which has /mac bigmacro.mac This works perfectly, that is simple macro gets stopped and bigmacro starts. Why EQ shortcut wo...
by Voland
Wed Nov 23, 2016 8:24 am
Forum: MQ2::Help
Topic: Can I restart my macro from within the macro?
Replies: 12
Views: 1388

Re: Can I restart my macro from within the macro?

How do you properly start a 2nd macro from the first macro? I have a simple macro (no includes, no variables) that I would like to use to start a 2nd big macro (uses many .inc files, globals/locals, many subs). Sub Main /echo Started Simple Mac /docommand /macro bigmacro.mac /echo Ending Simple Mac ...
by Voland
Fri Jun 20, 2014 6:44 am
Forum: MQ2::Bug Reports
Topic: Bizarre Heisenbug lost Target buff information
Replies: 0
Views: 485

Bizarre Heisenbug lost Target buff information

A single MQ2 session out of 8 total has lost access to buff information provided by target: http://www.macroquest2.com/wiki/index.php/DataType:targettype That is: all of the following return NULL even when target is character itself: /echo ${Target.BuffDuration[Circle of Embers]} /echo ${Target.Buff...
by Voland
Mon Oct 09, 2006 10:58 am
Forum: MQ2::Help
Topic: Change to /for loop
Replies: 0
Views: 1247

Change to /for loop

Just a little FYI

Made a change to:
http://www.macroquest2.com/wiki/index.p ... #For_Loops

It appears proper syntax for FOR NEXT loop has to be

Code: Select all

/next variablename
not

Code: Select all

/next
as was written previously

was about to post a help request till I finally figured it out :)