agonized_essence3.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. --[[
  2. Script Name : agonized_essence3.lua
  3. Script Purpose : Waypoint Path for agonized_essence3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/10/2020 01:29:57 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, -0.4, -0.09, -61.7, 2, 0)
  18. MovementLoopAddLocation(NPC, -7.28, -0.09, -63.99, 2, 0)
  19. MovementLoopAddLocation(NPC, -6.34, 0.66, -66.92, 2, 0)
  20. MovementLoopAddLocation(NPC, -6.55, -0.09, -64.89, 2, 0)
  21. MovementLoopAddLocation(NPC, -12.33, -0.09, -65.52, 2, 0)
  22. MovementLoopAddLocation(NPC, -12.87, -0.09, -60.16, 2, 0)
  23. MovementLoopAddLocation(NPC, -11.52, 0.05, -70.22, 2, 0)
  24. MovementLoopAddLocation(NPC, -9.66, 0.66, -70.32, 2, 0)
  25. MovementLoopAddLocation(NPC, -12.38, -0.09, -70.18, 2, 0)
  26. MovementLoopAddLocation(NPC, -9.54, -0.09, -76.23, 2, 0)
  27. MovementLoopAddLocation(NPC, -8.94, 0.66, -73.03, 2, 0)
  28. MovementLoopAddLocation(NPC, -9.94, -0.09, -74.66, 2, 0)
  29. MovementLoopAddLocation(NPC, 1.61, -0.09, -75.17, 2, 0)
  30. MovementLoopAddLocation(NPC, 1.71, -0.09, -70.21, 2, 0)
  31. MovementLoopAddLocation(NPC, -2.97, 0.66, -70.28, 2, 0)
  32. MovementLoopAddLocation(NPC, 0.88, -0.09, -70.88, 2, 0)
  33. MovementLoopAddLocation(NPC, -5.5, 0.04, -59.71, 2, 0)
  34. MovementLoopAddLocation(NPC, -6.43, 0.66, -67.89, 2, 0)
  35. MovementLoopAddLocation(NPC, -14.5, -0.09, -60.66, 2, 0)
  36. MovementLoopAddLocation(NPC, 1.83, -0.09, -62.84, 2, 0)
  37. MovementLoopAddLocation(NPC, -1.93, 0.46, -69.89, 2, 0)
  38. MovementLoopAddLocation(NPC, 1.23, -0.09, -78.59, 2, 0)
  39. MovementLoopAddLocation(NPC, -4.71, -0.09, -78.98, 2, 0)
  40. MovementLoopAddLocation(NPC, 1.23, -0.09, -78.59, 2, 0)
  41. MovementLoopAddLocation(NPC, -1.93, 0.46, -69.89, 2, 0)
  42. MovementLoopAddLocation(NPC, 1.83, -0.09, -62.84, 2, 0)
  43. MovementLoopAddLocation(NPC, -14.5, -0.09, -60.66, 2, 0)
  44. MovementLoopAddLocation(NPC, -6.43, 0.66, -67.89, 2, 0)
  45. MovementLoopAddLocation(NPC, -5.5, 0.04, -59.71, 2, 0)
  46. MovementLoopAddLocation(NPC, 0.88, -0.09, -70.88, 2, 0)
  47. MovementLoopAddLocation(NPC, -2.97, 0.66, -70.28, 2, 0)
  48. MovementLoopAddLocation(NPC, 1.71, -0.09, -70.21, 2, 0)
  49. MovementLoopAddLocation(NPC, 1.61, -0.09, -75.17, 2, 0)
  50. MovementLoopAddLocation(NPC, -9.94, -0.09, -74.66, 2, 0)
  51. MovementLoopAddLocation(NPC, -8.94, 0.66, -73.03, 2, 0)
  52. MovementLoopAddLocation(NPC, -9.54, -0.09, -76.23, 2, 0)
  53. MovementLoopAddLocation(NPC, -12.38, -0.09, -70.18, 2, 0)
  54. MovementLoopAddLocation(NPC, -9.66, 0.66, -70.32, 2, 0)
  55. MovementLoopAddLocation(NPC, -11.52, 0.05, -70.22, 2, 0)
  56. MovementLoopAddLocation(NPC, -12.87, -0.09, -60.16, 2, 0)
  57. MovementLoopAddLocation(NPC, -12.33, -0.09, -65.52, 2, 0)
  58. MovementLoopAddLocation(NPC, -6.55, -0.09, -64.89, 2, 0)
  59. MovementLoopAddLocation(NPC, -6.34, 0.66, -66.92, 2, 0)
  60. MovementLoopAddLocation(NPC, -7.28, -0.09, -63.99, 2, 0)
  61. MovementLoopAddLocation(NPC, -0.4, -0.09, -61.7, 2, 0)
  62. end