ashoalglider425523.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425523.lua
  3. Script Purpose : Waypoint Path for ashoalglider425523.lua
  4. Script Author : Rylec
  5. Script Date : 03-21-2020 10:25:29
  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, -1.23, -11.42, 65.31, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 31.8, -12.04, 59.2, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 27.21, -12.25, 57.68, 2, 0)
  20. MovementLoopAddLocation(NPC, 13.99, -12.22, 44.56, 2, 0)
  21. MovementLoopAddLocation(NPC, 7.49, -13.09, 35.29, 2, 0)
  22. MovementLoopAddLocation(NPC, 6.07, -13.26, 31.08, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 16.69, -12.9, 21.41, 2, 0)
  24. MovementLoopAddLocation(NPC, 22.26, -12.57, 15.51, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 16.8, -12.94, 21.13, 2, 0)
  26. MovementLoopAddLocation(NPC, 11.71, -13.22, 25.13, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 19.07, -13.6, 21.88, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 16.84, -13.54, 27.46, 2, 0)
  29. MovementLoopAddLocation(NPC, 15.83, -13.5, 34.25, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 12.52, -13.45, 27.74, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 3.7, -13.05, 27.61, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -2.16, -13.57, 30.44, 2, 0)
  33. MovementLoopAddLocation(NPC, -8.58, -13.9, 31.88, 2, 0)
  34. MovementLoopAddLocation(NPC, -14.42, -14.39, 33.89, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, -12.77, -12.98, 39.28, 2, 0)
  36. MovementLoopAddLocation(NPC, -6.97, -11.22, 51.25, 2, 0)
  37. end