bloodsaber_medic2.lua 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : bloodsaber_medic2.lua
  3. Script Purpose : Waypoint Path for bloodsaber_medic2.lua
  4. Script Author : Devn00b
  5. Script Date : 06/08/2020 11:48:32 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, 18.41, -0.09, 0.54, 2, 0)
  18. MovementLoopAddLocation(NPC, 11.57, -0.04, 0.5, 2, 0)
  19. MovementLoopAddLocation(NPC, 8.97, 0.27, 4.8, 2, 0)
  20. MovementLoopAddLocation(NPC, 5.84, 1.09, 9.39, 2, 0)
  21. MovementLoopAddLocation(NPC, 1.66, 1.78, 12.12, 2, 0)
  22. MovementLoopAddLocation(NPC, -3.22, 2.39, 11.85, 2, 0)
  23. MovementLoopAddLocation(NPC, -7.46, 3.15, 8.48, 2, 0)
  24. MovementLoopAddLocation(NPC, -10.7, 3.95, 4.82, 2, 0)
  25. MovementLoopAddLocation(NPC, -11.84, 4.67, 0.85, 2, 0)
  26. MovementLoopAddLocation(NPC, -10.98, 5.32, -3.55, 2, 0)
  27. MovementLoopAddLocation(NPC, -8.07, 5.94, -7.5, 2, 0)
  28. MovementLoopAddLocation(NPC, -4.37, 6.62, -9.99, 2, 0)
  29. MovementLoopAddLocation(NPC, -0.73, 6.99, -10.56, 2, 0)
  30. MovementLoopAddLocation(NPC, 1.84, 6.99, -12.73, 2, 0)
  31. MovementLoopAddLocation(NPC, -2.57, 6.99, -13.12, 2, 0)
  32. MovementLoopAddLocation(NPC, -1.82, 6.99, -9.63, 2, 0)
  33. MovementLoopAddLocation(NPC, -0.46, 7.02, -15.23, 2, 0)
  34. MovementLoopAddLocation(NPC, -0.89, 6.91, -25.96, 2, 0)
  35. MovementLoopAddLocation(NPC, -6.7, 6.84, -25.55, 2, 0)
  36. MovementLoopAddLocation(NPC, -3.1, 6.92, -28.99, 2, 0)
  37. MovementLoopAddLocation(NPC, -8.5, 6.87, -30.01, 2, 0)
  38. MovementLoopAddLocation(NPC, -15.6, 6.99, -25.18, 2, 0)
  39. MovementLoopAddLocation(NPC, -8.91, 7.46, -31.43, 2, 0)
  40. MovementLoopAddLocation(NPC, 2.85, 6.92, -17.57, 2, 0)
  41. MovementLoopAddLocation(NPC, -0.82, 6.81, -17.97, 2, 0)
  42. MovementLoopAddLocation(NPC, -0.77, 6.99, -10.08, 2, 0)
  43. MovementLoopAddLocation(NPC, -0.82, 6.81, -17.97, 2, 0)
  44. MovementLoopAddLocation(NPC, 2.85, 6.92, -17.57, 2, 0)
  45. MovementLoopAddLocation(NPC, -8.91, 7.46, -31.43, 2, 0)
  46. MovementLoopAddLocation(NPC, -15.6, 6.99, -25.18, 2, 0)
  47. MovementLoopAddLocation(NPC, -8.5, 6.87, -30.01, 2, 0)
  48. MovementLoopAddLocation(NPC, -3.1, 6.92, -28.99, 2, 0)
  49. MovementLoopAddLocation(NPC, -6.7, 6.84, -25.55, 2, 0)
  50. MovementLoopAddLocation(NPC, -0.89, 6.91, -25.96, 2, 0)
  51. MovementLoopAddLocation(NPC, -0.46, 7.02, -15.23, 2, 0)
  52. MovementLoopAddLocation(NPC, -1.82, 6.99, -9.63, 2, 0)
  53. MovementLoopAddLocation(NPC, -2.57, 6.99, -13.12, 2, 0)
  54. MovementLoopAddLocation(NPC, 1.84, 6.99, -12.73, 2, 0)
  55. MovementLoopAddLocation(NPC, -0.73, 6.99, -10.56, 2, 0)
  56. MovementLoopAddLocation(NPC, -4.37, 6.62, -9.99, 2, 0)
  57. MovementLoopAddLocation(NPC, -8.07, 5.94, -7.5, 2, 0)
  58. MovementLoopAddLocation(NPC, -10.98, 5.32, -3.55, 2, 0)
  59. MovementLoopAddLocation(NPC, -11.84, 4.67, 0.85, 2, 0)
  60. MovementLoopAddLocation(NPC, -10.7, 3.95, 4.82, 2, 0)
  61. MovementLoopAddLocation(NPC, -7.46, 3.15, 8.48, 2, 0)
  62. MovementLoopAddLocation(NPC, -3.22, 2.39, 11.85, 2, 0)
  63. MovementLoopAddLocation(NPC, 1.66, 1.78, 12.12, 2, 0)
  64. MovementLoopAddLocation(NPC, 5.84, 1.09, 9.39, 2, 0)
  65. MovementLoopAddLocation(NPC, 8.97, 0.27, 4.8, 2, 0)
  66. MovementLoopAddLocation(NPC, 11.57, -0.04, 0.5, 2, 0)
  67. MovementLoopAddLocation(NPC, 18.41, -0.09, 0.54, 2, 0)
  68. end