12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- --[[
- Script Name : SpawnScripts/ForestRuins/forgottenguardian.lua
- Script Author : Dorbin
- Script Date : 2022.02.26 05:02:19
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- ChooseMovement(NPC)
- end
- function ChooseMovement(NPC)
- -- if not GetSpawnLocationID(NPC,423685) and not GetSpawnLocationID(NPC,133772746) and not GetSpawnLocationID (NPC,133772747) and not GetSpawnLocationID (NP, 133772748) then
- local route = math.random(1,4)
- if route == 1 then
- RouteOne(NPC, Spawn)
- elseif route == 2 then
- RouteTwo(NPC, Spawn)
- elseif route == 3 then
- RouteThree(NPC, Spawn)
- elseif route == 4 then
- RouteFour(NPC, Spawn)
- end
- end
- --end
- function RouteOne(NPC, Spawn)
- local X = GetX(NPC)
- local Y = GetY(NPC)
- local Z = GetZ(NPC)
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(2,10))
- MovementLoopAddLocation(NPC, X + 4, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 4, Y, Z + 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 7, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 4, Y, Z + 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(20,45))
- end
- function RouteTwo(NPC, Spawn)
- local X = GetX(NPC)
- local Y = GetY(NPC)
- local Z = GetZ(NPC)
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(2,10))
- MovementLoopAddLocation(NPC, X - 4, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 4, Y, Z - 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 7, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 4, Y, Z - 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X, Y, Z, 1, math.random(20,45))
- end
- function RouteThree(NPC, Spawn)
- local X = GetX(NPC)
- local Y = GetY(NPC)
- local Z = GetZ(NPC)
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(2,10))
- MovementLoopAddLocation(NPC, X + 4, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 4, Y, Z - 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 7, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X + 4, Y, Z - 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(20,45))
- end
- function RouteFour(NPC, Spawn)
- local X = GetX(NPC)
- local Y = GetY(NPC)
- local Z = GetZ(NPC)
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(2,10))
- MovementLoopAddLocation(NPC, X - 4, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 4, Y, Z + 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 7, Y, Z, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X - 4, Y, Z + 4, 2, math.random(20,45))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(20,45))
- end
- function respawn(NPC, Spawn)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- end
|