From 1e0cd8d9b816fdf44ebc2e1a8831cd456114f2e6 Mon Sep 17 00:00:00 2001 From: Aleksi Blinnikka Date: Thu, 7 May 2020 19:24:12 +0300 Subject: [PATCH 1/1] Add slash cmd to get auras from unit --- kehys/auras.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/kehys/auras.lua b/kehys/auras.lua index ec03f42..f7f4365 100644 --- a/kehys/auras.lua +++ b/kehys/auras.lua @@ -156,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 -- 2.39.5