mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-15 11:22:23 -04:00
9 lines
220 B
Lua
9 lines
220 B
Lua
local NPC_ID_DAMION_TUR = 400079
|
|
local SOUND_ID = 20436
|
|
|
|
local function OnDamionTurSpawn(event, creature)
|
|
creature:PlayDirectSound(SOUND_ID)
|
|
end
|
|
|
|
RegisterCreatureEvent(NPC_ID_DAMION_TUR, 5, OnDamionTurSpawn)
|