Arena Team Tracker Addon

How do you get the spell icons to line up to the proper raid frames each match? Am I missing something?

Not entirely sure what you’re asking here.

Like the spell icons/cds won’t always line up to the proper class’s raid frame. I’ll have priest cds next to a hunter’s raid frame and vice versa.

Odds are the add-on is sorting by party, and Blizzard’s UI is all fubar and doesn’t do that by default.

Hit this macro before hand and it will sort the groups with you on top, party 1 in the middle, and party 2 on the bottom. Occasionally tweaks out if someone leaves mid match (aka during bgs or skirms) but is pretty solid in arena. The first match you hit it, you might have to go to interface and change the group sort option once, and then it will kick in and will be good until you reload / relog.

/run LoadAddOn(“Blizzard_CompactRaidFrames”) CRFSort_Group=function(t1, t2) if UnitIsUnit(t1,“player”) then return true elseif UnitIsUnit(t2,“player”) then return false else return t1 < t2 end end CompactRaidFrameContainer.flowSortFunc=CRFSort_Group

4 Likes

cool thanks fox!

1 Like

Any time =)