ataintedSapswillscout133769547.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769547.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769547.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:19:10
  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. MovementLoopAddLocation(NPC, 154.88, -0.59, -214.24, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 174.59, -0.6, -211.36, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 144.51, -0.91, -217.33, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 171.7, -0.59, -210.18, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 173.32, -0.59, -207.16, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 151.81, -0.6, -214.41, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 174.57, -0.59, -219.35, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 145.78, -0.51, -210.18, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 160.21, -0.54, -212.33, 2, math.random(14, 28))
  27. end