Architect Archive
Thread: looping a great survey macro?
I'm sure everyone has their surveying macro made already but does anyone know how to loop a macro? I would become my own harvester, hehe. Just in case someone wants to use it or critique it, my macro goes...
/sample
/pause 3
/sit
/pause 30
/stand
/sample etc. etc.
you heal up all your spend energy between sampling, basically an unlimited sample macro...just need to loop it.
thanks
The one I use is
/sample
/pause 3
/sit
/pause 27
/stand
/ui action toolbarSlot10
Make sure you type toolbarSlotXX with a capital S.
Now, that's pretty much identical to your's (with adjustment to my regen rate) except the final line. Your toolbar slots are numbered 00 - 23 when using toolbarSlotXX (XX is number) but they are shown to you as 1 - 24 which represents F1 - F12 and Shift F1 - Shift F12.
So, if instance, in my example above, toolbarSlot10 is actually slot 11 on the top row of the toolbar. Anyway, you place your macro in whatever slot you want to use and subtract 1 from the actual macro command. XX = 00 (for slot 1), 01 for slot 2, and so on.
Now, what that command does is press the key corresponding to the slot you put it in. In my case, /ui action toolbarSlot10 is the macro command to press the F11 key for me.
Hope that made sense.