Aggro meter

Blujahz

Your spell fizzled!
Joined
Feb 9, 2007
Messages
553
Reaction score
1
Points
0
I am interested in using the aggro meter values displayed in the Group & XTarget windows to help my healer macro anticipate who will take damage before they actually do.

I checked the wiki for the Group and XTarget TLOs but there is no mention of how to access the aggro meter data. Is there anyway to currently access this information in MQ2?
 
Me.PctAggro
Me.SecondaryPctAggro
Me.SecondaryAggroPlayer
Me.AggroLock

Target.PctAggro
Target.SecondaryPctAggro
Target.SecondaryAggroPlayer
Target.AggroLock

Me.XTarget[1].PctAggro
 
Me.PctAggro
Me.SecondaryPctAggro
Me.SecondaryAggroPlayer
Me.AggroLock

Target.PctAggro
Target.SecondaryPctAggro
Target.SecondaryAggroPlayer
Target.AggroLock

Me.XTarget[1].PctAggro

I think with XTarget you have to do.

${Me.XTarget[1].Spawn.PctAggro}
 
Aggro pct is shown in the group window to so you should be able to pull group members aggro % if it was ever added in MQ2.

For Xtarget you would need to.

${Spawn[${Me.XTarget[1]}].PctAggro}

haven't tested it though.
 
This is one of those things that isn't documented too well.

Before I asked in IRC I used ${Window[GroupWindowSomethingOrOther].Child[blahblah].Text} to get that information.

I'm at work but you might try ${Group.Member[1].PctAggro} or some combination of the examples above to see what the results are.
 
Group.Member[1].PctAggro

I figured it was obvious.