ataintedSapswillscout429255.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429255.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429255.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:15:22
  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, 245.57, -0.84, -134.65, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 237.67, -1.01, -115.02, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 227.76, -0.86, -108.75, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 229.65, -0.98, -113.86, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 228.77, -0.91, -116.23, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 236.73, -0.9, -125.84, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 248.56, -0.99, -144.8, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 235.8, -1.36, -107.75, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 246.59, -0.87, -146.26, 2, math.random(14, 28))
  27. end