stowe.lua 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. --[[
  2. Script Name : stowe.lua
  3. Script Purpose : Waypoint Path for stowe.lua
  4. Script Author : Devn00b
  5. Script Date : 04/15/2020 02:58:56 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, 447.68, -20.55, -253.23, 2, 0)
  25. MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0)
  26. MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0)
  27. MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0)
  28. MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0)
  29. MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0)
  30. MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0)
  31. MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0)
  32. MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0)
  33. MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0)
  34. MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0)
  35. MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0)
  36. MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0)
  37. MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0)
  38. MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0)
  39. MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0)
  40. MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0)
  41. MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0)
  42. MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0)
  43. MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0)
  44. MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0)
  45. MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0)
  46. MovementLoopAddLocation(NPC, 284.63, -19.26, -71.67, 2, 0)
  47. MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0)
  48. MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0)
  49. MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0)
  50. MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0)
  51. MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0)
  52. MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0)
  53. MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0)
  54. MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0)
  55. MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0)
  56. MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0)
  57. MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0)
  58. MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0)
  59. MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0)
  60. MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0)
  61. MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0)
  62. MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0)
  63. MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0)
  64. MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0)
  65. MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0)
  66. MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0)
  67. MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0)
  68. MovementLoopAddLocation(NPC, 447.68, -20.55, -253.23, 2, 0)
  69. end