arat.lua 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : arat_1.lua
  3. Script Purpose : Waypoint Path for arat_1.lua
  4. Script Author : Devn00b
  5. Script Date : 04/15/2020 07:07:38 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, 401.95, -16.53, -38.31, 2, 0)
  18. MovementLoopAddLocation(NPC, 403.59, -19.77, -68.06, 2, 0)
  19. MovementLoopAddLocation(NPC, 407.85, -19.77, -67.38, 2, 0)
  20. MovementLoopAddLocation(NPC, 407.05, -25, -53, 2, 0)
  21. MovementLoopAddLocation(NPC, 423.12, -26.84, -51.28, 2, 0)
  22. MovementLoopAddLocation(NPC, 424.85, -26.86, -67.58, 2, 0)
  23. MovementLoopAddLocation(NPC, 413.22, -26.02, -66.61, 2, 0)
  24. MovementLoopAddLocation(NPC, 412.92, -26.16, -52.2, 2, 0)
  25. MovementLoopAddLocation(NPC, 408.89, -25, -53.18, 2, 0)
  26. MovementLoopAddLocation(NPC, 404.59, -19.77, -68.21, 2, 0)
  27. MovementLoopAddLocation(NPC, 406.16, -19.77, -87.86, 2, 0)
  28. MovementLoopAddLocation(NPC, 408.28, -21.89, -99.83, 2, 0)
  29. MovementLoopAddLocation(NPC, 410.11, -23.45, -107.09, 2, 0)
  30. MovementLoopAddLocation(NPC, 417.2, -23.85, -122.13, 2, 0)
  31. MovementLoopAddLocation(NPC, 429.39, -22.9, -130.15, 2, 0)
  32. MovementLoopAddLocation(NPC, 444.68, -20.99, -135.66, 2, 0)
  33. MovementLoopAddLocation(NPC, 454.78, -20.77, -140.15, 2, 0)
  34. MovementLoopAddLocation(NPC, 478.21, -20.75, -150.6, 2, 0)
  35. MovementLoopAddLocation(NPC, 482.53, -20.75, -152.59, 2, 0)
  36. MovementLoopAddLocation(NPC, 501.64, -21.1, -156.34, 2, 0)
  37. MovementLoopAddLocation(NPC, 482.53, -20.75, -152.59, 2, 0)
  38. MovementLoopAddLocation(NPC, 478.21, -20.75, -150.6, 2, 0)
  39. MovementLoopAddLocation(NPC, 454.78, -20.77, -140.15, 2, 0)
  40. MovementLoopAddLocation(NPC, 444.68, -20.99, -135.66, 2, 0)
  41. MovementLoopAddLocation(NPC, 429.39, -22.9, -130.15, 2, 0)
  42. MovementLoopAddLocation(NPC, 417.2, -23.85, -122.13, 2, 0)
  43. MovementLoopAddLocation(NPC, 410.11, -23.45, -107.09, 2, 0)
  44. MovementLoopAddLocation(NPC, 408.28, -21.89, -99.83, 2, 0)
  45. MovementLoopAddLocation(NPC, 406.16, -19.77, -87.86, 2, 0)
  46. MovementLoopAddLocation(NPC, 404.59, -19.77, -68.21, 2, 0)
  47. MovementLoopAddLocation(NPC, 408.89, -25, -53.18, 2, 0)
  48. MovementLoopAddLocation(NPC, 412.92, -26.16, -52.2, 2, 0)
  49. MovementLoopAddLocation(NPC, 413.22, -26.02, -66.61, 2, 0)
  50. MovementLoopAddLocation(NPC, 424.85, -26.86, -67.58, 2, 0)
  51. MovementLoopAddLocation(NPC, 423.12, -26.84, -51.28, 2, 0)
  52. MovementLoopAddLocation(NPC, 407.05, -25, -53, 2, 0)
  53. MovementLoopAddLocation(NPC, 407.85, -19.77, -67.38, 2, 0)
  54. MovementLoopAddLocation(NPC, 403.59, -19.77, -68.06, 2, 0)
  55. MovementLoopAddLocation(NPC, 401.95, -16.53, -38.31, 2, 0)
  56. end