ataintedSapswillinvader431157.lua 1016 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillinvader431157.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillinvader431157.lua - TEST SCRIPT
  4. Script Author : Rylec
  5. Script Date : 11-19-2020 05:12:27
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MoveToLocation(NPC, 174.34, -3.11, 155.46, 2)
  19. MoveToLocation(NPC, 82.43, -4.49, 171.83, 2)
  20. MoveToLocation(NPC, 72.49, -4.30, 170.27, 2)
  21. MoveToLocation(NPC, 60.48, -4, 189.65, 2, 0)
  22. MoveToLocation(NPC, 72.34, -4.3, 169.86, 2, 0)
  23. MoveToLocation(NPC, 67.34, -4.28, 154.56, 2, 0)
  24. MoveToLocation(NPC, 71.9, -4.3, 170.88, 2, 0)
  25. MoveToLocation(NPC, 60.48, -4, 189.65, 2, 0)
  26. MoveToLocation(NPC, 72.34, -4.3, 169.86, 2, 0)
  27. MoveToLocation(NPC, 67.34, -4.28, 154.56, 2, 0)
  28. MoveToLocation(NPC, 71.9, -4.3, 170.88, 2, 0)
  29. end