ataintedSapswillscout429166.lua 1021 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout429166.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout429166.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:13:55
  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, 235.8, -1.5, -118.78, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 251.53, -0.96, -150.88, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 249.6, -0.91, -146.04, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 238.65, -0.85, -141.11, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 239.74, -0.86, -133.91, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 238.58, -0.84, -149.75, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 237.7, -0.85, -134.77, 2, math.random(14, 28))
  25. end