mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
8 lines
212 B
Lua
8 lines
212 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)
|