eluna-scripts-ornfelt/lua/RandomScriptsforAzerothCore/Auto_Rez.lua
2024-09-23 07:59:23 +02:00

7 lines
168 B
Lua

local SPELL_ID = 51916
function OnKilledByCreature(event, killer, killed)
killed:CastSpell(killed, SPELL_ID, true)
end
RegisterPlayerEvent(8, OnKilledByCreature)