DocksideMarketGuardB.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : SpawnScripts/Neriak/DocksideMarketGuardB.lua
  3. Script Purpose : Waypoint Path for Dockside Market Guard B Docks to Indigo Hollow path
  4. Script Author : Cynnar
  5. Script Date : 5/20/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, 24.16, 3.75, 318.7, 2, 0)
  20. MovementLoopAddLocation(NPC, -3.28, 6.38, 324.29, 2, 0)
  21. MovementLoopAddLocation(NPC, -14.58, 6.54, 324.55, 2, 0)
  22. MovementLoopAddLocation(NPC, -22.19, 6.84, 321.52, 2, 0)
  23. MovementLoopAddLocation(NPC, -30.74, 6.89, 321.32, 2, 0)
  24. MovementLoopAddLocation(NPC, -36.76, 6.92, 324.06, 2, 0)
  25. MovementLoopAddLocation(NPC, -42.91, 6.97, 327.67, 2, 0)
  26. MovementLoopAddLocation(NPC, -50.3, 6.93, 329.78, 2, 0)
  27. MovementLoopAddLocation(NPC, -56.52, 7.01, 329.75, 2, 0)
  28. MovementLoopAddLocation(NPC, -67.58, 6.91, 327.95, 2, 0)
  29. MovementLoopAddLocation(NPC, -71.02, 7.03, 326.28, 2, 0)
  30. MovementLoopAddLocation(NPC, -75.87, 7.09, 321.93, 2, 0)
  31. MovementLoopAddLocation(NPC, -79.09, 7.42, 314.05, 2, 0)
  32. MovementLoopAddLocation(NPC, -80.73, 7.9, 306.18, 2, 0)
  33. MovementLoopAddLocation(NPC, -85.95, 7.99, 301.04, 2, 0)
  34. MovementLoopAddLocation(NPC, -98.99, 7.81, 299.93, 2, 0)
  35. MovementLoopAddLocation(NPC, -102.85, 7.63, 298.22, 2, 0)
  36. MovementLoopAddLocation(NPC, -106.82, 7.48, 295.86, 2, 0)
  37. MovementLoopAddLocation(NPC, -108.95, 7.45, 292.94, 2, 0)
  38. MovementLoopAddLocation(NPC, -111.81, 7.49, 276.59, 2, 0)
  39. MovementLoopAddLocation(NPC, -113.82, 7.59, 270.35, 2, 0)
  40. MovementLoopAddLocation(NPC, -117.22, 7.59, 263.35, 2, 0)
  41. MovementLoopAddLocation(NPC, -119.78, 7.45, 258.99, 2, 0)
  42. MovementLoopAddLocation(NPC, -122.32, 7.37, 256.23, 2, 0)
  43. MovementLoopAddLocation(NPC, -126.65, 7.2, 252.78, 2, 0)
  44. MovementLoopAddLocation(NPC, -122.32, 7.37, 256.23, 2, 0)
  45. MovementLoopAddLocation(NPC, -119.78, 7.45, 258.99, 2, 0)
  46. MovementLoopAddLocation(NPC, -117.22, 7.59, 263.35, 2, 0)
  47. MovementLoopAddLocation(NPC, -113.82, 7.59, 270.35, 2, 0)
  48. MovementLoopAddLocation(NPC, -111.81, 7.49, 276.59, 2, 0)
  49. MovementLoopAddLocation(NPC, -108.95, 7.45, 292.94, 2, 0)
  50. MovementLoopAddLocation(NPC, -106.82, 7.48, 295.86, 2, 0)
  51. MovementLoopAddLocation(NPC, -102.85, 7.63, 298.22, 2, 0)
  52. MovementLoopAddLocation(NPC, -98.99, 7.81, 299.93, 2, 0)
  53. MovementLoopAddLocation(NPC, -85.95, 7.99, 301.04, 2, 0)
  54. MovementLoopAddLocation(NPC, -80.73, 7.9, 306.18, 2, 0)
  55. MovementLoopAddLocation(NPC, -79.09, 7.42, 314.05, 2, 0)
  56. MovementLoopAddLocation(NPC, -75.87, 7.09, 321.93, 2, 0)
  57. MovementLoopAddLocation(NPC, -71.02, 7.03, 326.28, 2, 0)
  58. MovementLoopAddLocation(NPC, -67.58, 6.91, 327.95, 2, 0)
  59. MovementLoopAddLocation(NPC, -56.52, 7.01, 329.75, 2, 0)
  60. MovementLoopAddLocation(NPC, -50.3, 6.93, 329.78, 2, 0)
  61. MovementLoopAddLocation(NPC, -42.91, 6.97, 327.67, 2, 0)
  62. MovementLoopAddLocation(NPC, -36.76, 6.92, 324.06, 2, 0)
  63. MovementLoopAddLocation(NPC, -30.74, 6.89, 321.32, 2, 0)
  64. MovementLoopAddLocation(NPC, -22.19, 6.84, 321.52, 2, 0)
  65. MovementLoopAddLocation(NPC, -14.58, 6.54, 324.55, 2, 0)
  66. MovementLoopAddLocation(NPC, -3.28, 6.38, 324.29, 2, 0)
  67. MovementLoopAddLocation(NPC, 24.16, 3.75, 318.7, 2, 0)
  68. end