X-Git-Url: https://www.aleksib.fi/git/wowui.git/blobdiff_plain/aa4370fe66033f579495c44b3b4a5256efea8812..6a32145b790f4647a82dff47a7f726992c2e5f76:/kehys/auras.lua diff --git a/kehys/auras.lua b/kehys/auras.lua index 42afc12..641e128 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -95,13 +95,36 @@ end auraEvents.SPELL_AURA_BROKEN_SPELL = auraEvents.SPELL_AURA_BROKEN; local counter = 0; -local function clog(ts, event, _, source, _, _, _, dest, _, flags, _, spellid, ...) +local function clog(ts, event, _, source, _, _, _, dest, _, _, _, spellid, ...) if auraEvents[event] and watchedAuras[spellid] and guids[dest] then auraEvents[event](guids[dest], spellid, source, ...); end end addon.Events.Clog = clog; +local types = {["HELPFUL"] = "BUFF", ["HARMFUL"] = "DEBUFF"}; +local function setAuras(unit, guid) + local name; + local spellid, count, source; + for filter, atype in pairs(types) do + local i = 1; + while true do + name, _, count, _, _, _, source, _, _, spellid = UnitAura(unit, i, filter); + if not spellid then break end + if count == 0 then count = nil end + if source ~= nil then + clog(0, "SPELL_AURA_APPLIED", nil, UnitGUID(source), nil, nil, nil, + guid, nil, nil, nil, spellid, nil, nil, atype, count); + elseif filter == "HARMFUL" then + clog(0, "SPELL_AURA_APPLIED", nil, nil, nil, nil, nil, + guid, nil, nil, nil, spellid, nil, nil, atype, count); + end + i = i + 1; + end + end +end +addon.SetAuras = setAuras; + local frame = CreateFrame("Frame"); frame:Hide(); frame:SetScript("OnEvent", function()