123456789101112131415161718192021222324252627282930313233343536373839 |
- --[[
- Script Name : SpawnScripts/QueensColony/ataintedSapswillinvader431147.lua
- Script Purpose : Waypoint Path for ataintedSapswillinvader431147.lua
- Script Author : Rylec
- Script Date : 11-19-2020 05:12:27
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function waypoints(NPC)
- MoveToLocation(NPC, 166.88, -3.36, 202.35, 2)
- MoveToLocation(NPC, 148.4, -3.62, 193.61, 2)
- MoveToLocation(NPC, 132.43, -3.62, 185.18, 2)
- MoveToLocation(NPC, 126.96, -3.81, 184.94, 2)
- MoveToLocation(NPC, 122.59, -3.75, 182.45, 2)
- MoveToLocation(NPC, 118.24, -3.77, 178.38, 2)
- MoveToLocation(NPC, 78.56, -4.36, 157.78, 2)
- MoveToLocation(NPC, 75.75, -4.36, 160.57, 2, "waypointsLoop")
- -- MoveToLocation(NPC, 73.31, -4.36, 164.62, 2)
- -- MoveToLocation(NPC, 72.34, -4.3, 169.86, 2, "waypointsLoop")
- end
- function waypointsLoop(NPC)
- MovementLoopAddLocation(NPC, 60.48, -4, 189.65, 2, 0)
- MovementLoopAddLocation(NPC, 72.34, -4.3, 169.86, 2, 0)
- MovementLoopAddLocation(NPC, 67.34, -4.28, 154.56, 2, 0)
- MovementLoopAddLocation(NPC, 71.9, -4.3, 170.88, 2, 0)
- end
|