ashoalglider425479.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425479.lua
  3. Script Purpose : Waypoint Path for ashoalglider425479.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:13: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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 39.95, -11.44, -76.15, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 56.86, -11.48, -67.91, 2, 0)
  19. MovementLoopAddLocation(NPC, 65.99, -11.45, -66.18, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 46.81, -11.5, -80.33, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 53.39, -11.26, -63.19, 2, 0)
  22. MovementLoopAddLocation(NPC, 54.92, -10.99, -60.18, 2, 0)
  23. MovementLoopAddLocation(NPC, 58.8, -10.7, -49.81, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 53.43, -10.7, -59.49, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 55.67, -11.48, -63.12, 2, 0)
  26. MovementLoopAddLocation(NPC, 56.29, -11.43, -68.25, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 49.24, -11.5, -74.39, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 44.86, -11.88, -75.75, 2, 0)
  29. end