Files
RandomScriptsforAzerothCore/Alleria1.lua
2023-02-10 05:31:57 -07:00

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)