123456789101112131415161718192021222324252627282930313233 |
- --[[
- Script Name : SpawnScripts/QueensColony/ataintedSapswillinvader431157.lua
- Script Purpose : Waypoint Path for ataintedSapswillinvader431157.lua - TEST SCRIPT
- 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, 174.34, -3.11, 155.46, 2)
- MoveToLocation(NPC, 82.43, -4.49, 171.83, 2)
- MoveToLocation(NPC, 72.49, -4.30, 170.27, 2)
- MoveToLocation(NPC, 60.48, -4, 189.65, 2, 0)
- MoveToLocation(NPC, 72.34, -4.3, 169.86, 2, 0)
- MoveToLocation(NPC, 67.34, -4.28, 154.56, 2, 0)
- MoveToLocation(NPC, 71.9, -4.3, 170.88, 2, 0)
- MoveToLocation(NPC, 60.48, -4, 189.65, 2, 0)
- MoveToLocation(NPC, 72.34, -4.3, 169.86, 2, 0)
- MoveToLocation(NPC, 67.34, -4.28, 154.56, 2, 0)
- MoveToLocation(NPC, 71.9, -4.3, 170.88, 2, 0)
- end
|