landro.lua 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. --[[
  2. Script Name : landro.lua
  3. Script Purpose : Waypoint Path for landro.lua
  4. Script Author : Devn00b
  5. Script Date : 04/12/2020 12:05:55 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. waypoints(NPC)
  11. SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. GenericRaceCheckHail(NPC, Spawn)
  16. end
  17. function InRange(NPC,Spawn)
  18. GenericRaceCheckCallout(NPC, Spawn)
  19. end
  20. function respawn(NPC)
  21. spawn(NPC)
  22. end
  23. function waypoints(NPC)
  24. MovementLoopAddLocation(NPC, 463.48, -19.76, -346.26, 2, 0)
  25. MovementLoopAddLocation(NPC, 447.3, -20.33, -321.65, 2, 0)
  26. MovementLoopAddLocation(NPC, 432.43, -20.81, -271.1, 2, 0)
  27. MovementLoopAddLocation(NPC, 446.16, -20.63, -254.5, 2, 0)
  28. MovementLoopAddLocation(NPC, 441.37, -19.53, -204.77, 2, 0)
  29. MovementLoopAddLocation(NPC, 438.23, -17.1, -177.77, 2, 0)
  30. MovementLoopAddLocation(NPC, 425.36, -17.67, -155.68, 2, 0)
  31. MovementLoopAddLocation(NPC, 404.25, -23.69, -121.33, 2, 0)
  32. MovementLoopAddLocation(NPC, 394.91, -15.93, -91.15, 2, 0)
  33. MovementLoopAddLocation(NPC, 394.05, -15.73, -59.67, 2, 0)
  34. MovementLoopAddLocation(NPC, 388.43, -17.98, -22.83, 2, 0)
  35. MovementLoopAddLocation(NPC, 323.06, -21.43, -16.85, 2, 0)
  36. MovementLoopAddLocation(NPC, 300.13, -21.13, -48.51, 2, 0)
  37. MovementLoopAddLocation(NPC, 273.89, -21.12, -33.85, 2, 0)
  38. MovementLoopAddLocation(NPC, 276.56, -21.31, -2.55, 2, 0)
  39. MovementLoopAddLocation(NPC, 299.65, -21.34, 7.74, 2, 0)
  40. MovementLoopAddLocation(NPC, 312.69, -21.5, 24.28, 2, 0)
  41. MovementLoopAddLocation(NPC, 340.38, -21.2, 48.51, 2, 0)
  42. MovementLoopAddLocation(NPC, 357.57, -20.79, 87.39, 2, 0)
  43. MovementLoopAddLocation(NPC, 388.1, -21.22, 128.1, 2, 0)
  44. MovementLoopAddLocation(NPC, 374.22, -20.45, 147.95, 2, 0)
  45. MovementLoopAddLocation(NPC, 349.74, -20.06, 165.65, 2, 0)
  46. MovementLoopAddLocation(NPC, 340.66, -19.4, 169, 2, 0)
  47. MovementLoopAddLocation(NPC, 330.05, -18.62, 170.45, 2, 0)
  48. MovementLoopAddLocation(NPC, 322.42, -18.17, 169.6, 2, 0)
  49. MovementLoopAddLocation(NPC, 317.43, -17.97, 167.7, 2, 0)
  50. MovementLoopAddLocation(NPC, 310.82, -17.85, 163.01, 2, 0)
  51. MovementLoopAddLocation(NPC, 304.93, -17.75, 156.6, 2, 0)
  52. MovementLoopAddLocation(NPC, 301.88, -17, 149.87, 2, 0)
  53. MovementLoopAddLocation(NPC, 299.06, -15.83, 140.5, 2, 0)
  54. MovementLoopAddLocation(NPC, 297.14, -14.91, 131.87, 2, 0)
  55. MovementLoopAddLocation(NPC, 287.74, -13.48, 106.96, 2, 0)
  56. MovementLoopAddLocation(NPC, 297.14, -14.91, 131.87, 2, 0)
  57. MovementLoopAddLocation(NPC, 299.06, -15.83, 140.5, 2, 0)
  58. MovementLoopAddLocation(NPC, 301.88, -17, 149.87, 2, 0)
  59. MovementLoopAddLocation(NPC, 304.93, -17.75, 156.6, 2, 0)
  60. MovementLoopAddLocation(NPC, 310.82, -17.85, 163.01, 2, 0)
  61. MovementLoopAddLocation(NPC, 317.43, -17.97, 167.7, 2, 0)
  62. MovementLoopAddLocation(NPC, 322.42, -18.17, 169.6, 2, 0)
  63. MovementLoopAddLocation(NPC, 330.05, -18.62, 170.45, 2, 0)
  64. MovementLoopAddLocation(NPC, 340.66, -19.4, 169, 2, 0)
  65. MovementLoopAddLocation(NPC, 349.74, -20.06, 165.65, 2, 0)
  66. MovementLoopAddLocation(NPC, 374.22, -20.45, 147.95, 2, 0)
  67. MovementLoopAddLocation(NPC, 388.1, -21.22, 128.1, 2, 0)
  68. MovementLoopAddLocation(NPC, 357.57, -20.79, 87.39, 2, 0)
  69. MovementLoopAddLocation(NPC, 340.38, -21.2, 48.51, 2, 0)
  70. MovementLoopAddLocation(NPC, 312.69, -21.5, 24.28, 2, 0)
  71. MovementLoopAddLocation(NPC, 299.65, -21.34, 7.74, 2, 0)
  72. MovementLoopAddLocation(NPC, 276.56, -21.31, -2.55, 2, 0)
  73. MovementLoopAddLocation(NPC, 273.89, -21.12, -33.85, 2, 0)
  74. MovementLoopAddLocation(NPC, 300.13, -21.13, -48.51, 2, 0)
  75. MovementLoopAddLocation(NPC, 323.06, -21.43, -16.85, 2, 0)
  76. MovementLoopAddLocation(NPC, 388.43, -17.98, -22.83, 2, 0)
  77. MovementLoopAddLocation(NPC, 394.05, -15.73, -59.67, 2, 0)
  78. MovementLoopAddLocation(NPC, 394.91, -15.93, -91.15, 2, 0)
  79. MovementLoopAddLocation(NPC, 404.25, -23.69, -121.33, 2, 0)
  80. MovementLoopAddLocation(NPC, 425.36, -17.67, -155.68, 2, 0)
  81. MovementLoopAddLocation(NPC, 438.23, -17.1, -177.77, 2, 0)
  82. MovementLoopAddLocation(NPC, 441.37, -19.53, -204.77, 2, 0)
  83. MovementLoopAddLocation(NPC, 446.16, -20.63, -254.5, 2, 0)
  84. MovementLoopAddLocation(NPC, 432.43, -20.81, -271.1, 2, 0)
  85. MovementLoopAddLocation(NPC, 447.3, -20.33, -321.65, 2, 0)
  86. MovementLoopAddLocation(NPC, 463.48, -19.76, -346.26, 2, 0)
  87. end