ataintedSapswillscout133769636.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769636.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769636.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:32:20
  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, 203.59, -0.71, -159.96, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 196.62, -0.69, -146.93, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 178.42, 0.36, -161.01, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 192.26, -0.67, -166.24, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 192.37, -0.68, -134.03, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 191.94, -0.67, -160.54, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 189.71, -0.66, -153.6, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 191.26, -0.67, -159.43, 2, 0)
  26. MovementLoopAddLocation(NPC, 189.55, -0.66, -174.09, 2, math.random(14, 28))
  27. end