123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- --[[
- Script Name : SpawnScripts/Oakmyst_Classic/asunshimmerspriteDif7.lua
- Script Author : LordPazuzu
- Script Date : 2022.10.19 05:10:13
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- ChooseMovement(NPC)
- end
- function ChooseMovement(NPC)
- 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
- function RouteOne(NPC, Spawn)
- local X = GetX(NPC)
- local Y = GetY(NPC)
- local Z = GetZ(NPC)
- MovementLoopAddLocation(NPC, X, Y+2, Z, 2, math.random(2,10))
- MovementLoopAddLocation(NPC, X + 4, Y, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y+2, Z + 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y, Z + 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(10,20))
- 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+2, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y+2, Z - 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y, Z - 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X, Y, Z, 1, math.random(10,20))
- 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+2, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y, Z - 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y+2, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X + 4, Y, Z - 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(10,20))
- 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(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y, Z + 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y+2, Z, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X - 4, Y+2, Z + 4, 2, math.random(10,20))
- MovementLoopAddLocation(NPC, X, Y, Z, 2, math.random(10,20))
- end
- function respawn(NPC, Spawn)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
|