ataintedSapswillscout133769584.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769584.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769584.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:22:50
  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, 94.95, -0.85, -153.97, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 72.42, 0.17, -172.43, 2, math.random(14, 28))
  20. MovementLoopAddLocation(NPC, 97.12, -0.33, -177.13, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 93.87, -1.03, -144.87, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 69.13, -2.47, -166.1, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 80.07, -1.38, -155.51, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 94.88, -0.5, -170.97, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 73.52, -0.23, -169.46, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 75.75, 0.06, -177.74, 2, 0)
  27. MovementLoopAddLocation(NPC, 76.06, -0.28, -181.13, 2, 0)
  28. MovementLoopAddLocation(NPC, 84.26, -0.29, -203.45, 2, math.random(14, 28))
  29. end