X-Git-Url: https://www.aleksib.fi/git/wowui.git/blobdiff_plain/3ce401749aaa236c206a034549ab161bd8bd1ec9..1a61ccc411a4cd75256afe3baf9bcd47891c1df4:/kehys/auras.lua diff --git a/kehys/auras.lua b/kehys/auras.lua index ec03f42..c9e7158 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -83,6 +83,7 @@ local watchedAuras = { [313460] = {1, "alert"}, -- Nullification (Hivemind) [313461] = {1, "heal"}, -- Corrosion (Hivemind) [307359] = {1, "heal"}, -- Despair (Vexiona) + [316065] = {1, "alert"}, -- Corrupted Existence (Ra'den) }; local playerGuid = nil; @@ -156,3 +157,22 @@ frame:SetScript("OnEvent", function() frame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED"); end); frame:RegisterEvent("PLAYER_LOGIN"); + +-- debug slash command to get target auras +SLASH_KEHYS1 = "/kaura" +function SlashCmdList.KEHYS(msg, editBox) + local name, spellid, count, source; + local unit = "target"; + if msg and msg ~= "" then + unit = msg; + end + 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 + print(atype, name, count, source, spellid); + i = i + 1; + end + end +end