rattwo.lua 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --[[
  2. Script Name : rattwo.lua
  3. Script Purpose : Waypoint Path for rattwo.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 01:44:20 AM
  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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 686.64, -20.64, -14.49, 5, 0)
  19. MovementLoopAddLocation(NPC, 704.74, -20.64, -22.94, 5, 0)
  20. MovementLoopAddLocation(NPC, 704.4, -20.87, -61.16, 5, 0)
  21. MovementLoopAddLocation(NPC, 712.02, -20.89, -70.69, 5, 0)
  22. MovementLoopAddLocation(NPC, 672.32, -20.64, -124.57, 5, 0)
  23. MovementLoopAddLocation(NPC, 710.37, -20.89, -104.91, 5, 0)
  24. MovementLoopAddLocation(NPC, 718.69, -21.05, -67.02, 5, 0)
  25. MovementLoopAddLocation(NPC, 748.22, -21.42, -50.85, 5, 0)
  26. MovementLoopAddLocation(NPC, 766.66, -20.93, -16.59, 5, 0)
  27. MovementLoopAddLocation(NPC, 767.86, -20.64, -28.26, 5, 0)
  28. MovementLoopAddLocation(NPC, 767.71, -21.83, -51.64, 5, 0)
  29. MovementLoopAddLocation(NPC, 804.52, -20.46, -61.69, 5, 0)
  30. MovementLoopAddLocation(NPC, 852.38, -25.36, -64.48, 5, 0)
  31. MovementLoopAddLocation(NPC, 860.95, -25.37, -77.22, 5, 0)
  32. MovementLoopAddLocation(NPC, 886.55, -25.36, -56.57, 5, 0)
  33. MovementLoopAddLocation(NPC, 898.46, -25.43, -21.16, 5, 0)
  34. MovementLoopAddLocation(NPC, 899.23, -25.47, 10.79, 5, 0)
  35. MovementLoopAddLocation(NPC, 909.8, -25.52, 22.64, 5, 0)
  36. MovementLoopAddLocation(NPC, 896.46, -25.52, 20.77, 5, 0)
  37. MovementLoopAddLocation(NPC, 904.43, -25.45, 32.59, 5, 0)
  38. MovementLoopAddLocation(NPC, 913.82, -25.38, 52.74, 5, 0)
  39. MovementLoopAddLocation(NPC, 924.79, -25.49, 48.31, 5, 0)
  40. MovementLoopAddLocation(NPC, 932.46, -25.6, 30.46, 5, 0)
  41. MovementLoopAddLocation(NPC, 906.67, -25.46, 16.61, 5, 0)
  42. MovementLoopAddLocation(NPC, 932.46, -25.6, 30.46, 5, 0)
  43. MovementLoopAddLocation(NPC, 924.79, -25.49, 48.31, 5, 0)
  44. MovementLoopAddLocation(NPC, 913.82, -25.38, 52.74, 5, 0)
  45. MovementLoopAddLocation(NPC, 904.43, -25.45, 32.59, 5, 0)
  46. MovementLoopAddLocation(NPC, 896.46, -25.52, 20.77, 5, 0)
  47. MovementLoopAddLocation(NPC, 909.8, -25.52, 22.64, 5, 0)
  48. MovementLoopAddLocation(NPC, 899.23, -25.47, 10.79, 5, 0)
  49. MovementLoopAddLocation(NPC, 898.46, -25.43, -21.16, 5, 0)
  50. MovementLoopAddLocation(NPC, 886.55, -25.36, -56.57, 5, 0)
  51. MovementLoopAddLocation(NPC, 860.95, -25.37, -77.22, 5, 0)
  52. MovementLoopAddLocation(NPC, 852.38, -25.36, -64.48, 5, 0)
  53. MovementLoopAddLocation(NPC, 804.52, -20.46, -61.69, 5, 0)
  54. MovementLoopAddLocation(NPC, 767.71, -21.83, -51.64, 5, 0)
  55. MovementLoopAddLocation(NPC, 767.86, -20.64, -28.26, 5, 0)
  56. MovementLoopAddLocation(NPC, 766.66, -20.93, -16.59, 5, 0)
  57. MovementLoopAddLocation(NPC, 748.22, -21.42, -50.85, 5, 0)
  58. MovementLoopAddLocation(NPC, 718.69, -21.05, -67.02, 5, 0)
  59. MovementLoopAddLocation(NPC, 710.37, -20.89, -104.91, 5, 0)
  60. MovementLoopAddLocation(NPC, 672.32, -20.64, -124.57, 5, 0)
  61. MovementLoopAddLocation(NPC, 712.02, -20.89, -70.69, 5, 0)
  62. MovementLoopAddLocation(NPC, 704.4, -20.87, -61.16, 5, 0)
  63. MovementLoopAddLocation(NPC, 704.74, -20.64, -22.94, 5, 0)
  64. MovementLoopAddLocation(NPC, 686.64, -20.64, -14.49, 5, 0)
  65. end