stowe.lua 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. 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, 447.68, -20.55, -253.23, 2, 0)
  18. MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0)
  19. MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0)
  20. MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0)
  21. MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0)
  22. MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0)
  23. MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0)
  24. MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0)
  25. MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0)
  26. MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0)
  27. MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0)
  28. MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0)
  29. MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0)
  30. MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0)
  31. MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0)
  32. MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0)
  33. MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0)
  34. MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0)
  35. MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0)
  36. MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0)
  37. MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0)
  38. MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0)
  39. MovementLoopAddLocation(NPC, 284.63, -19.26, -71.67, 2, 0)
  40. MovementLoopAddLocation(NPC, 306.45, -21.68, -64.88, 2, 0)
  41. MovementLoopAddLocation(NPC, 304, -21.27, -48.14, 2, 0)
  42. MovementLoopAddLocation(NPC, 316.12, -21.03, -24.32, 2, 0)
  43. MovementLoopAddLocation(NPC, 320.28, -21.36, -14.74, 2, 0)
  44. MovementLoopAddLocation(NPC, 297.91, -21.21, 3.3, 2, 0)
  45. MovementLoopAddLocation(NPC, 276.91, -21.35, -3.84, 2, 0)
  46. MovementLoopAddLocation(NPC, 263.42, -21, -32.59, 2, 0)
  47. MovementLoopAddLocation(NPC, 259.97, -20.93, -47.84, 2, 0)
  48. MovementLoopAddLocation(NPC, 262.38, -19.85, -67.33, 2, 0)
  49. MovementLoopAddLocation(NPC, 264.28, -18.76, -94.28, 2, 0)
  50. MovementLoopAddLocation(NPC, 255.31, -18.82, -114.03, 2, 0)
  51. MovementLoopAddLocation(NPC, 264.82, -18.73, -144.56, 2, 0)
  52. MovementLoopAddLocation(NPC, 283.16, -18.75, -144.17, 2, 0)
  53. MovementLoopAddLocation(NPC, 289.67, -19.39, -152.75, 2, 0)
  54. MovementLoopAddLocation(NPC, 317.24, -22.24, -182.83, 2, 0)
  55. MovementLoopAddLocation(NPC, 324.96, -22.93, -203.63, 2, 0)
  56. MovementLoopAddLocation(NPC, 339.65, -18.27, -237.73, 2, 0)
  57. MovementLoopAddLocation(NPC, 337.55, -19.1, -249.13, 2, 0)
  58. MovementLoopAddLocation(NPC, 364.96, -18.57, -276.32, 2, 0)
  59. MovementLoopAddLocation(NPC, 383.08, -17.53, -277.79, 2, 0)
  60. MovementLoopAddLocation(NPC, 405.21, -18.18, -280.89, 2, 0)
  61. MovementLoopAddLocation(NPC, 447.68, -20.55, -253.23, 2, 0)
  62. end