ashoalglider425538.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425538.lua
  3. Script Purpose : Waypoint Path for glider_023_16.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 11:26:12
  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, 96.82, -11.5, -3.62, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 94.5, -11.5, 5.61, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 93.96, -12.24, 14.36, 2, 0)
  20. MovementLoopAddLocation(NPC, 94.45, -12.44, 18.73, 2, 0)
  21. MovementLoopAddLocation(NPC, 97.68, -12.38, 27.3, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 87.42, -12.61, 11.65, 2, 0)
  23. MovementLoopAddLocation(NPC, 80.6, -12.38, 2.97, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 78.09, -11.92, 10.04, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 72.6, -10.7, 18.38, 2, 0)
  26. MovementLoopAddLocation(NPC, 69.91, -10.7, 24.47, 2, 0)
  27. MovementLoopAddLocation(NPC, 66.31, -12.5, 32.9, 2, 0)
  28. MovementLoopAddLocation(NPC, 65.99, -12.79, 37.42, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 63.2, -11.78, 25.32, 2, 0)
  30. MovementLoopAddLocation(NPC, 60.19, -12.33, 13.79, 2, 0)
  31. MovementLoopAddLocation(NPC, 56.68, -12.71, 9.11, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 43.81, -12.85, 15.11, 2, 0)
  33. MovementLoopAddLocation(NPC, 36.79, -13.39, 20.16, 2, math.random(10, 20))
  34. MovementLoopAddLocation(NPC, 56.39, -11.83, 16.38, 2, 0)
  35. MovementLoopAddLocation(NPC, 74.52, -11.35, 12.28, 2, 0)
  36. MovementLoopAddLocation(NPC, 81.34, -11.06, 12.15, 2, 0)
  37. MovementLoopAddLocation(NPC, 87.57, -11.9, 10.84, 2, 0)
  38. MovementLoopAddLocation(NPC, 93.86, -12.43, 6.16, 2, math.random(10, 20))
  39. MovementLoopAddLocation(NPC, 95.75, -11.31, 3.01, 2, 0)
  40. end