ashoalglider425498.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425498.lua
  3. Script Purpose : Waypoint Path for ashoalglider425498.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:19:14
  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, 71.04, -11.5, -47.69, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 77.45, -11.89, -44.78, 2, 0)
  19. MovementLoopAddLocation(NPC, 87.2, -12.22, -42, 2, 4)
  20. MovementLoopAddLocation(NPC, 79.55, -11.59, -44.58, 2, 0)
  21. MovementLoopAddLocation(NPC, 74.8, -11.19, -49.21, 2, 0)
  22. MovementLoopAddLocation(NPC, 60.87, -11.34, -61.88, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 61.58, -10.55, -82.78, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 61.01, -11.6, -60.89, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 76.26, -10.7, -77.5, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 65.29, -10.61, -45.4, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 79.04, -10.7, -39.54, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 84.53, -11.31, -34.64, 2, 0)
  29. MovementLoopAddLocation(NPC, 99.5, -11.49, -25.66, 2, math.random(10, 20))
  30. MovementLoopAddLocation(NPC, 94.94, -11.78, -24.5, 2, 0)
  31. MovementLoopAddLocation(NPC, 83.63, -12.37, -21.76, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, 90.74, -10.7, -45.9, 2, math.random(10, 20))
  33. MovementLoopAddLocation(NPC, 80.55, -10.76, -45.45, 2, 0)
  34. end