ataintedSapswillscout133769527.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedSapswillscout133769527.lua
  3. Script Purpose : Waypoint Path for ataintedSapswillscout133769527.lua
  4. Script Author : Rylec
  5. Script Date : 06-26-2020 06:16:01
  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, 239.27, -0.19, -164.58, 2, math.random(14, 28))
  19. MovementLoopAddLocation(NPC, 239.8, -0.55, -174.54, 2, 0)
  20. MovementLoopAddLocation(NPC, 238.1, -0.84, -179.56, 2, math.random(14, 28))
  21. MovementLoopAddLocation(NPC, 245.22, 0.21, -164.37, 2, math.random(14, 28))
  22. MovementLoopAddLocation(NPC, 229.31, -0.87, -157.9, 2, math.random(14, 28))
  23. MovementLoopAddLocation(NPC, 242.87, 0.22, -167.07, 2, math.random(14, 28))
  24. MovementLoopAddLocation(NPC, 217.86, -0.76, -183.66, 2, math.random(14, 28))
  25. MovementLoopAddLocation(NPC, 218.07, -0.76, -172.01, 2, math.random(14, 28))
  26. MovementLoopAddLocation(NPC, 240.93, -0.85, -145.87, 2, 0)
  27. MovementLoopAddLocation(NPC, 249.11, -1.14, -140.89, 2, math.random(14, 28))
  28. MovementLoopAddLocation(NPC, 248.04, -0.95, -145.38, 2, 0)
  29. end