-
Posted by rosto on Mon, 13 Oct 2014 00:14:51
I found two changes that will make CombatTracker work in WoW 6.0.2 (tested on PTR client).
All
CombatTrackerFrameText:SetText
calls should be replaced byCombatTrackerFrame_Text:SetText
GetNumPartyMembers()
function used inCombatTracker_ReportDPS()
was removed in 5.0.4 patch. You can useGetNumGroupMembers()
orIsInGroup()
function instead:if IsInGroup() then SendChatMessage(msg, "PARTY") else print(msg)
or
if GetNumGroupMembers() > 0 then SendChatMessage(msg, "PARTY") else print(msg)
Enjoy!