ataintedSapswillscout133769621.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769621.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769621.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:31:07
  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, 172.58, 0.11, -168.71, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 179.81, 0.6, -155.82, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 189.86, -0.66, -153.32, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 195.24, -0.69, -154.62, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 192.17, -0.67, -160.98, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 184.09, -0.65, -144.22, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 202.18, -0.71, -155.99, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 182.58, -0.64, -171.33, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 201.98, -0.71, -162.58, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 183.84, -0.64, -172.82, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 197.79, -0.69, -172.68, 2, math.random(14, 28))
  29. MovementLoopAddLocation(NPC, 199.28, -0.7, -169.08, 2, math.random(14, 28))
  30. end