X-Git-Url: https://www.aleksib.fi/git/wowui.git/blobdiff_plain/9d2b39eafbaccdfcc3ea838f41e0af1a963b5ed6..7e89b697fa2eafadcf13081be0ad36c08b47f47c:/kehys/auras.lua diff --git a/kehys/auras.lua b/kehys/auras.lua index 07b28da..f7f4365 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -19,6 +19,9 @@ local watchedAuras = { [287280] = {1, "buff1"}, -- Glimmer of Light [194384] = {1, "buff1"}, -- Atonement [61295] = {1, "buff1"}, -- Riptide + [53563] = {1, "buff2"}, -- Beacon of Light + [156910] = {1, "buff2"}, -- Beacon of Faith + [200025] = {1, "buff2"}, -- Beacon of Virtue -- Tank defensives [6940] = {1, "tankcd"}, -- Blessing of Sacrifice [33206] = {1, "tankcd"}, -- Pain Suppression @@ -153,3 +156,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