ataintedSapswillscout429122.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429122.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429122.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:14: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, 230.75, -0.82, -118.52, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 244.48, -0.85, -146.33, 2, 0)
  20. MovementLoopAddLocation(NPC, 246.67, -0.11, -153.57, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 238.53, -1.04, -125.04, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 224.76, -0.8, -108.69, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 229.78, -0.99, -111.18, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 239.81, -0.95, -114.96, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 240.52, -0.88, -135.95, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 238.69, -1.32, -119.92, 2, math.random(14, 28))
  27. MovementLoopAddLocation(NPC, 242.6, -0.87, -137.37, 2, math.random(14, 28))
  28. end