ashoalglider425492.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ashoalglider425492.lua
  3. Script Purpose : Waypoint Path for ashoalglider425492.lua
  4. Script Author : Rylec
  5. Script Date : 01-21-2020 04:17:47
  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, 90.02, -12.5, -21.46, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 94.84, -12.13, -33.71, 2, 0)
  19. MovementLoopAddLocation(NPC, 100.55, -11.68, -39.91, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 91.73, -11.48, -40.17, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 91.92, -12.24, -21.13, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 87.48, -12.2, -34.51, 2, 0)
  23. MovementLoopAddLocation(NPC, 85.81, -11.54, -39.05, 2, 0)
  24. MovementLoopAddLocation(NPC, 86.37, -11.61, -43.95, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 80.22, -11.79, -44.93, 2, 0)
  26. MovementLoopAddLocation(NPC, 74.75, -11.63, -48.54, 2, 0)
  27. MovementLoopAddLocation(NPC, 65.02, -11.91, -57.09, 2, 0)
  28. MovementLoopAddLocation(NPC, 55.75, -11.32, -63.37, 2, math.random(10, 20))
  29. MovementLoopAddLocation(NPC, 68.68, -11.08, -57.68, 2, 0)
  30. MovementLoopAddLocation(NPC, 75.04, -10.7, -56.54, 2, math.random(10, 20))
  31. MovementLoopAddLocation(NPC, 76.08, -10.7, -51.59, 2, 0)
  32. MovementLoopAddLocation(NPC, 81.75, -11.59, -41.13, 2, 0)
  33. MovementLoopAddLocation(NPC, 84.48, -12.08, -34.35, 2, 0)
  34. MovementLoopAddLocation(NPC, 87.67, -12.55, -20.8, 2, math.random(10, 20))
  35. MovementLoopAddLocation(NPC, 81.1, -12.22, -9.62, 2, math.random(10, 20))
  36. MovementLoopAddLocation(NPC, 86.88, -12.47, -15.06, 2, 0)
  37. end