ataintedSapswillscout133769635.lua 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769635.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769635.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:32:18
  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, 186.69, -0.66, -135.12, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 191.23, -0.67, -160.74, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 205.71, -0.73, -138.63, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 183.84, -0.64, -172.78, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 196.64, -0.69, -163.5, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 195.22, -0.69, -148.12, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 192.28, -0.67, -173.99, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 195.12, -0.68, -155.76, 2, math.random(14, 28))
  26. end