• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Finding Aggro % in MQ2 Macro

Joined
Feb 8, 2005
RedCents
8,901¢
I wanted to add the ability to see what my Aggro % is in my macros. So I can blow Cooldowns and such on cleric when he grabs aggro. Is there a way to see this like ${Me.AggroPct} or something?
 
so the way to get the percent for that is this

${Window[AggroMeterWnd].Child[AMW_AggroGaugeLabel].Text}
or to make it simpler
${Window[AMW_AggroGuageLabel].Text}

sadly this is consitered a string and can not be used in mathmatical formulas... not sure on how to convert it over to a int or float... maybe through a plugin? anyone have any good ideas?

- - - Updated - - -

correction... mq2 finaly fixed it so its not consitered a string anymore... have fun :) i'm going to start doing the same thing with fd and jolts...
 
character
int PctAggro - ${Me.PctAggro}
int SecondaryPctAggro
spawn SecondaryAggroPlayer
spawn AggroLock

target
int PctAggro - ${Target.PctAggro}
int SecondaryPctAggro
spawn SecondaryAggroPlayer

groupmember
int PctAggro - ${Group.Member[1].PctAggro}

xtarget
int PctAggro - ${Me.XTarget[1].PctAggro}
 
Question - Finding Aggro % in MQ2 Macro

Users who are viewing this thread

Back
Top
Cart