mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
9 lines
No EOL
186 B
Lua
9 lines
No EOL
186 B
Lua
local npcid = 400019
|
|
|
|
function OnSpawn(event, creature)
|
|
creature:SetWalk(true)
|
|
creature:MoveWaypoint()
|
|
creature:SetReactState(0)
|
|
end
|
|
|
|
RegisterCreatureEvent(npcid, 5, OnSpawn) |