Would someone be willing to help me out with the syntax for Extended Targets?
I am trying to use
MQ2Hud to display each of the Xtar's target's name (TOTT) and class (TOTC). For example, for my own single target I have "TOTT=3,1350,580,255,255,0,${Me.TargetOfTarget} | ${Me.TargetOfTarget.Class}", which shows me the name/class of who my target is attacking. I want the same for each of the XTAR's.
So far, I am playing with the following:
XT1=3,765,500,0,255,0,XT1 - ${Me.XTarget[1].Name} | ${Me.XTarget[1].Class}
XT2=3,765,512,0,255,0,XT2 - ${Me.XTarget[2].Name} | ${Me.XTarget[2].Class}
XT3=3,765,524,0,255,0,XT3 - ${Me.XTarget[3].Name} | ${Me.XTarget[3].Class}
etc...
This will give me the Xtar name and class... but I want it to display that mobs target's name and mobs target's class.
${Me.XTarget[1].TargetOfTarget} | ${Me.XTarget[1].TargetOfTarget.Class} offers a NULL value.
${Me.XTarget[1].AggroHolder} also offers a NULL value.
What would the correct syntax be?