ravenous_cube3.lua 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : ravenous_cube3.lua
  3. Script Purpose : Waypoint Path for ravenous_cube3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/28/2020 06:21:02 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, 97.99, 0.05, -63.35, 2, 0)
  18. MovementLoopAddLocation(NPC, 123.37, -2.44, -62.6, 2, 0)
  19. MovementLoopAddLocation(NPC, 129.61, -3.86, -58.58, 2, 0)
  20. MovementLoopAddLocation(NPC, 143.65, -6.83, -44.81, 2, 0)
  21. MovementLoopAddLocation(NPC, 148.96, -6.83, -42.84, 2, 0)
  22. MovementLoopAddLocation(NPC, 172.21, -7.01, -60.48, 2, 0)
  23. MovementLoopAddLocation(NPC, 170.69, -7.01, -38.49, 2, 0)
  24. MovementLoopAddLocation(NPC, 156.37, -7.01, -40.25, 2, 0)
  25. MovementLoopAddLocation(NPC, 163.22, -7.52, -42.94, 2, 0)
  26. MovementLoopAddLocation(NPC, 159.09, -7.01, -59.36, 2, 0)
  27. MovementLoopAddLocation(NPC, 150.67, -7.01, -58.15, 2, 0)
  28. MovementLoopAddLocation(NPC, 168.5, -7.01, -50.58, 2, 0)
  29. MovementLoopAddLocation(NPC, 172.03, -7.01, -44.04, 2, 0)
  30. MovementLoopAddLocation(NPC, 177.73, -7.03, -44.29, 2, 0)
  31. MovementLoopAddLocation(NPC, 182.82, -6.47, -49.03, 2, 0)
  32. MovementLoopAddLocation(NPC, 176.45, -6.92, -44.75, 2, 0)
  33. MovementLoopAddLocation(NPC, 169.83, -7.01, -45.01, 2, 0)
  34. MovementLoopAddLocation(NPC, 167.88, -7.01, -39.24, 2, 0)
  35. MovementLoopAddLocation(NPC, 173.1, -7.01, -39.01, 2, 0)
  36. MovementLoopAddLocation(NPC, 157.06, -7.01, -39.48, 2, 0)
  37. MovementLoopAddLocation(NPC, 173.1, -7.01, -39.01, 2, 0)
  38. MovementLoopAddLocation(NPC, 167.88, -7.01, -39.24, 2, 0)
  39. MovementLoopAddLocation(NPC, 169.83, -7.01, -45.01, 2, 0)
  40. MovementLoopAddLocation(NPC, 176.45, -6.92, -44.75, 2, 0)
  41. MovementLoopAddLocation(NPC, 182.82, -6.47, -49.03, 2, 0)
  42. MovementLoopAddLocation(NPC, 177.73, -7.03, -44.29, 2, 0)
  43. MovementLoopAddLocation(NPC, 172.03, -7.01, -44.04, 2, 0)
  44. MovementLoopAddLocation(NPC, 168.5, -7.01, -50.58, 2, 0)
  45. MovementLoopAddLocation(NPC, 150.67, -7.01, -58.15, 2, 0)
  46. MovementLoopAddLocation(NPC, 159.09, -7.01, -59.36, 2, 0)
  47. MovementLoopAddLocation(NPC, 163.22, -7.52, -42.94, 2, 0)
  48. MovementLoopAddLocation(NPC, 156.37, -7.01, -40.25, 2, 0)
  49. MovementLoopAddLocation(NPC, 170.69, -7.01, -38.49, 2, 0)
  50. MovementLoopAddLocation(NPC, 172.21, -7.01, -60.48, 2, 0)
  51. MovementLoopAddLocation(NPC, 148.96, -6.83, -42.84, 2, 0)
  52. MovementLoopAddLocation(NPC, 143.65, -6.83, -44.81, 2, 0)
  53. MovementLoopAddLocation(NPC, 129.61, -3.86, -58.58, 2, 0)
  54. MovementLoopAddLocation(NPC, 123.37, -2.44, -62.6, 2, 0)
  55. MovementLoopAddLocation(NPC, 97.99, 0.05, -63.35, 2, 0)
  56. end