This commit is contained in:
2024-08-24 22:41:08 +02:00
parent 77f1ac5d7a
commit c21f59778f
431 changed files with 68581 additions and 68581 deletions

View File

@@ -1,14 +1,14 @@
-- COMBAT_LOG_EVENT_UNFILTERED
function(e, ...)
local caster, err = CLEUParser.GetSourceName(...)
if err then return end
if caster ~= aura_env.PlayerName then return end
local subevent, err = CLEUParser.GetSubevent(...)
if err then return end
if subevent ~= "SPELL_PERIODIC_DAMAGE" then return end
local spellID, err = CLEUParser.GetSpellId(...)
if err then return end
if spellID == 980 then
aura_env.AgonyStack:Push(time())
end
-- COMBAT_LOG_EVENT_UNFILTERED
function(e, ...)
local caster, err = CLEUParser.GetSourceName(...)
if err then return end
if caster ~= aura_env.PlayerName then return end
local subevent, err = CLEUParser.GetSubevent(...)
if err then return end
if subevent ~= "SPELL_PERIODIC_DAMAGE" then return end
local spellID, err = CLEUParser.GetSpellId(...)
if err then return end
if spellID == 980 then
aura_env.AgonyStack:Push(time())
end
end