diff --git a/Auto_Rez.lua b/Auto_Rez.lua new file mode 100644 index 0000000..7bcb0a2 --- /dev/null +++ b/Auto_Rez.lua @@ -0,0 +1,7 @@ +local SPELL_ID = 51916 + +function OnKilledByCreature(event, killer, killed) + killed:CastSpell(killed, SPELL_ID, true) +end + +RegisterPlayerEvent(8, OnKilledByCreature)