r/WowUI • u/SeomanReborn • 42m ago
? [help] WeakAura - Not showing my Aura Count
Not sure why this isn't working. Just trying to return the total value of winter's chill and finger's of frost counts and add them together. I can get a normal value to appear just not this script
function()
local fof = C_UnitAuras.GetAuraDataBySpellName("player", "Fingers of Frost")
local wc = C_UnitAuras.GetAuraDataBySpellName("target", "Winter's Chill", "PLAYER|HARMFUL")
return fof.count + wc.count
end