• 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 --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

Question - Finding Aggro % in MQ2 Macro (1 Viewer)

Joined
Feb 8, 2005
RedCents
8,490¢
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