12345678910111213141516171819202122232425262728293031323334353637383940 |
- --[[
- Script Name : SpawnScripts/QueensColony/ataintedSapswillinvader431139.lua
- Script Purpose : Waypoint Path for ataintedSapswillinvader431139.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, 161.92, -2.42, 184.16, 2)
- MoveToLocation(NPC, 135.65, -3.28, 184.07, 2)
- MoveToLocation(NPC, 129.93, -3.66, 181.17, 2)
- MoveToLocation(NPC, 123.24, -3.72, 181.18, 2)
- MoveToLocation(NPC, 118.27, -3.8, 182.2, 2)
- MoveToLocation(NPC, 94.6, -4.15, 181.95, 2)
- MoveToLocation(NPC, 91.95, -4.27, 181.14, 2)
- MoveToLocation(NPC, 87.64, -4.36, 180.98, 2)
- MoveToLocation(NPC, 83.59, -4.34, 180.14, 2)
- MoveToLocation(NPC, 75.82, -4.48, 180.13, 2)
- MoveToLocation(NPC, 68.99, -4.49, 177.68, 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
|