Tumble files around a bit

This commit is contained in:
2025-05-16 10:20:19 +02:00
parent 0e3166a410
commit 003f90126d
1595 changed files with 75381 additions and 70006 deletions

View File

@@ -0,0 +1,27 @@
-- COMBAT_LOG_EVENT_UNFILTERED
-- For some reason the non lua version does not work (with status > event > spell aura applied...)
function(e, ...)
local subevent, err = CLEUParser.GetSubevent(...)
if err ~= nil then
-- print(err)
return
end
if subevent == "SPELL_AURA_APPLIED" then
local spellid, err = CLEUParser.GetSpellId(...)
if err ~= nil then
-- print(err)
return
end
local target, err = CLEUParser.GetDestName(...)
if err ~= nil then
-- print(err)
return
end
-- print(target, spellid)
if spellid == 208052 and UnitName("player") == target then
return true
end
end
end