ataintedSapswillscout133769634.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769634.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769634.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:32:13
  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, 190.82, -0.67, -151.59, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 191.79, -0.68, -137.16, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 202.04, -0.71, -155.91, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 185.37, -0.65, -144.36, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 196.93, -0.69, -171.29, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 195.48, -0.68, -173.33, 2, 0)
  24. MovementLoopAddLocation(NPC, 191.21, -0.66, -174.9, 2, 0)
  25. MovementLoopAddLocation(NPC, 179.27, -0.62, -174.86, 2, 0)
  26. MovementLoopAddLocation(NPC, 175.37, -0.61, -172.7, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 194.2, -0.68, -144.27, 2, math.random(14, 28))
  28. end