mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-13 02:22:19 -04:00
8 lines
175 B
Lua
8 lines
175 B
Lua
local SPELL_ID = 51916
|
|
|
|
function OnKilledByCreature(event, killer, killed)
|
|
killed:CastSpell(killed, SPELL_ID, true)
|
|
end
|
|
|
|
RegisterPlayerEvent(8, OnKilledByCreature)
|