bloodsaber_adept.lua 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. --[[
  2. Script Name : bloodsaber_adept.lua
  3. Script Purpose : Waypoint Path for bloodsaber_adept.lua
  4. Script Author : Devn00b
  5. Script Date : 06/12/2020 04:18:07 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, 5.99, -0.08, -195.62, 2, 0)
  18. MovementLoopAddLocation(NPC, 8.29, -0.08, -190.09, 2, 0)
  19. MovementLoopAddLocation(NPC, 8.43, -0.08, -182.85, 2, 0)
  20. MovementLoopAddLocation(NPC, 18.55, -0.08, -183.15, 2, 0)
  21. MovementLoopAddLocation(NPC, 20.26, -0.08, -183.88, 2, 0)
  22. MovementLoopAddLocation(NPC, 25.83, -0.08, -186.77, 2, 0)
  23. MovementLoopAddLocation(NPC, 27.07, -0.43, -190.57, 2, 0)
  24. MovementLoopAddLocation(NPC, 41.22, -0.33, -190.22, 2, 0)
  25. MovementLoopAddLocation(NPC, 45.32, -0.2, -187.48, 2, 0)
  26. MovementLoopAddLocation(NPC, 53.79, -0.2, -174.42, 2, 0)
  27. MovementLoopAddLocation(NPC, 57.03, -0.22, -171.48, 2, 0)
  28. MovementLoopAddLocation(NPC, 63.9, -0.21, -166.29, 2, 0)
  29. MovementLoopAddLocation(NPC, 67.89, -0.7, -167.49, 2, 0)
  30. MovementLoopAddLocation(NPC, 90.44, -0.26, -168.26, 2, 0)
  31. MovementLoopAddLocation(NPC, 91.68, -0.08, -158.98, 2, 0)
  32. MovementLoopAddLocation(NPC, 98.89, -0.08, -164.24, 2, 0)
  33. MovementLoopAddLocation(NPC, 98.95, -0.08, -179.02, 2, 0)
  34. MovementLoopAddLocation(NPC, 80.17, -0.08, -179.21, 2, 0)
  35. MovementLoopAddLocation(NPC, 85.36, -0.08, -177.6, 2, 0)
  36. MovementLoopAddLocation(NPC, 94.56, -0.08, -171.23, 2, 0)
  37. MovementLoopAddLocation(NPC, 100.75, -0.08, -174.02, 2, 0)
  38. MovementLoopAddLocation(NPC, 97.31, -0.08, -170.68, 2, 0)
  39. MovementLoopAddLocation(NPC, 84.98, -0.08, -156.47, 2, 0)
  40. MovementLoopAddLocation(NPC, 97.31, -0.08, -170.68, 2, 0)
  41. MovementLoopAddLocation(NPC, 100.75, -0.08, -174.02, 2, 0)
  42. MovementLoopAddLocation(NPC, 94.56, -0.08, -171.23, 2, 0)
  43. MovementLoopAddLocation(NPC, 85.36, -0.08, -177.6, 2, 0)
  44. MovementLoopAddLocation(NPC, 80.17, -0.08, -179.21, 2, 0)
  45. MovementLoopAddLocation(NPC, 98.95, -0.08, -179.02, 2, 0)
  46. MovementLoopAddLocation(NPC, 98.89, -0.08, -164.24, 2, 0)
  47. MovementLoopAddLocation(NPC, 91.68, -0.08, -158.98, 2, 0)
  48. MovementLoopAddLocation(NPC, 90.44, -0.26, -168.26, 2, 0)
  49. MovementLoopAddLocation(NPC, 67.89, -0.7, -167.49, 2, 0)
  50. MovementLoopAddLocation(NPC, 63.9, -0.21, -166.29, 2, 0)
  51. MovementLoopAddLocation(NPC, 57.03, -0.22, -171.48, 2, 0)
  52. MovementLoopAddLocation(NPC, 53.79, -0.2, -174.42, 2, 0)
  53. MovementLoopAddLocation(NPC, 45.32, -0.2, -187.48, 2, 0)
  54. MovementLoopAddLocation(NPC, 41.22, -0.33, -190.22, 2, 0)
  55. MovementLoopAddLocation(NPC, 27.07, -0.43, -190.57, 2, 0)
  56. MovementLoopAddLocation(NPC, 25.83, -0.08, -186.77, 2, 0)
  57. MovementLoopAddLocation(NPC, 20.26, -0.08, -183.88, 2, 0)
  58. MovementLoopAddLocation(NPC, 18.55, -0.08, -183.15, 2, 0)
  59. MovementLoopAddLocation(NPC, 8.43, -0.08, -182.85, 2, 0)
  60. MovementLoopAddLocation(NPC, 8.29, -0.08, -190.09, 2, 0)
  61. MovementLoopAddLocation(NPC, 5.99, -0.08, -195.62, 2, 0)
  62. end