• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Quick question for simple macro (1 Viewer)

Joined
Dec 17, 2006
RedCents
23¢
Hi,
trying to make a macro to AFK for mech guardian. basically target CPU hail and refresh DS.

but when the zone expires my toon would sit in pok spamming the wrong code making it obvious im using MQ.

so i was hoping someone would help me with a simple code to check if zone.id is pok and end the macro.

tried to fiddle around with it cant figure how to use the zone.id code :(
 
What I normally do is

Rich (BB code):
/declare StartZone int outer ${Zone.ID}

at start of macro and then later in macro

Rich (BB code):
    /if (${Zone.ID} != ${StartZone}) {
        /endmac
        | or whatever you want to do
    }

I would also put an if around the /say portion to make sure you have the cpu targeted before spamming the code.

Rich (BB code):
        /if (${Target.ID} && ${Target.Name.Find[CPU]}) {
 
Quick question for simple macro

Users who are viewing this thread

Back
Top