mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-13 02:22:19 -04:00
9 lines
194 B
Lua
9 lines
194 B
Lua
local npcid = 400019
|
|
|
|
function OnSpawn(event, creature)
|
|
creature:SetWalk(true)
|
|
creature:MoveWaypoint()
|
|
creature:SetReactState(0)
|
|
end
|
|
|
|
RegisterCreatureEvent(npcid, 5, OnSpawn) |