ataintedSapswillscout133769610.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769610.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769610.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:29:42
  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, 142.98, -0.48, -196.71, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 137.3, 0.27, -180.3, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 135.35, -0.46, -188.05, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 142.39, 0.48, -183.18, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 149.22, -0.51, -196.16, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 145.33, -0.44, -193.23, 2, 0)
  24. MovementLoopAddLocation(NPC, 141.62, -0.48, -193.1, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 139.28, -0.47, -195.95, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 138.52, 0.49, -180.42, 2, math.random(14, 28))
  27. end