NewForeignQuaterGuard.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --[[
  2. Script Name : SpawnScripts/Neriak/NewForeignQuaterGuard.lua
  3. Script Purpose : Waypoint Path for New Foreign Quater Guard
  4. Script Author : Cynnar
  5. Script Date : 5/14/2018 12:00:00 AM
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. SetMount(NPC, 7242)
  10. SetMountColor(NPC, 65, 52, 44, 58, 59, 151)
  11. waypoints(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 118.87, 24.08, 158.84, 2, 0)
  20. MovementLoopAddLocation(NPC, 115.19, 24.15, 159.04, 2, 0)
  21. MovementLoopAddLocation(NPC, 103.03, 23.81, 153.4, 2, 0)
  22. MovementLoopAddLocation(NPC, 100.66, 23.72, 148.5, 2, 0)
  23. MovementLoopAddLocation(NPC, 100.85, 23.39, 144.32, 2, 0)
  24. MovementLoopAddLocation(NPC, 101.87, 22.1, 136.97, 2, 0)
  25. MovementLoopAddLocation(NPC, 103.94, 21.84, 132.45, 2, 0)
  26. MovementLoopAddLocation(NPC, 107.79, 21.84, 128.72, 2, 0)
  27. MovementLoopAddLocation(NPC, 109.07, 21.78, 124.67, 2, 0)
  28. MovementLoopAddLocation(NPC, 108.04, 21.57, 118.39, 2, 0)
  29. MovementLoopAddLocation(NPC, 104.63, 21.7, 115.35, 2, 0)
  30. MovementLoopAddLocation(NPC, 98.69, 21.72, 110.94, 2, 0)
  31. MovementLoopAddLocation(NPC, 97.92, 21.75, 106.18, 2, 0)
  32. MovementLoopAddLocation(NPC, 98.32, 21.73, 102.39, 2, 0)
  33. MovementLoopAddLocation(NPC, 99.2, 21.74, 97, 2, 0)
  34. MovementLoopAddLocation(NPC, 97.97, 21.7, 94.51, 2, 0)
  35. MovementLoopAddLocation(NPC, 95.42, 21.7, 91.79, 2, 0)
  36. MovementLoopAddLocation(NPC, 91.87, 21.7, 88.91, 2, 0)
  37. MovementLoopAddLocation(NPC, 90.82, 21.7, 84.19, 2, 0)
  38. MovementLoopAddLocation(NPC, 91.39, 21.7, 81.53, 2, 0)
  39. MovementLoopAddLocation(NPC, 94.53, 21.7, 76.52, 2, 0)
  40. MovementLoopAddLocation(NPC, 97.97, 21.7, 72.06, 2, 0)
  41. MovementLoopAddLocation(NPC, 94.53, 21.7, 76.52, 2, 0)
  42. MovementLoopAddLocation(NPC, 91.39, 21.7, 81.53, 2, 0)
  43. MovementLoopAddLocation(NPC, 90.82, 21.7, 84.19, 2, 0)
  44. MovementLoopAddLocation(NPC, 91.87, 21.7, 88.91, 2, 0)
  45. MovementLoopAddLocation(NPC, 95.42, 21.7, 91.79, 2, 0)
  46. MovementLoopAddLocation(NPC, 97.97, 21.7, 94.51, 2, 0)
  47. MovementLoopAddLocation(NPC, 99.2, 21.74, 97, 2, 0)
  48. MovementLoopAddLocation(NPC, 98.32, 21.73, 102.39, 2, 0)
  49. MovementLoopAddLocation(NPC, 97.92, 21.75, 106.18, 2, 0)
  50. MovementLoopAddLocation(NPC, 98.69, 21.72, 110.94, 2, 0)
  51. MovementLoopAddLocation(NPC, 104.63, 21.7, 115.35, 2, 0)
  52. MovementLoopAddLocation(NPC, 108.04, 21.57, 118.39, 2, 0)
  53. MovementLoopAddLocation(NPC, 109.07, 21.78, 124.67, 2, 0)
  54. MovementLoopAddLocation(NPC, 107.79, 21.84, 128.72, 2, 0)
  55. MovementLoopAddLocation(NPC, 103.94, 21.84, 132.45, 2, 0)
  56. MovementLoopAddLocation(NPC, 101.87, 22.1, 136.97, 2, 0)
  57. MovementLoopAddLocation(NPC, 100.85, 23.39, 144.32, 2, 0)
  58. MovementLoopAddLocation(NPC, 100.66, 23.72, 148.5, 2, 0)
  59. MovementLoopAddLocation(NPC, 103.03, 23.81, 153.4, 2, 0)
  60. MovementLoopAddLocation(NPC, 115.19, 24.15, 159.04, 2, 0)
  61. end