ravenous_cube2.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : ravenous_cube2_1.lua
  3. Script Purpose : Waypoint Path for ravenous_cube2_1.lua
  4. Script Author : Devn00b
  5. Script Date : 06/28/2020 06:20:58 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, 140.08, -6.75, -44.71, 2, 0)
  18. MovementLoopAddLocation(NPC, 153.66, -7.01, -42.25, 2, 0)
  19. MovementLoopAddLocation(NPC, 155.45, -7.01, -43.45, 2, 0)
  20. MovementLoopAddLocation(NPC, 155.83, -7.03, -69.94, 2, 0)
  21. MovementLoopAddLocation(NPC, 161.28, -6.99, -78.24, 2, 0)
  22. MovementLoopAddLocation(NPC, 170.01, -6.96, -81.99, 2, 0)
  23. MovementLoopAddLocation(NPC, 180.93, -6.98, -79.48, 2, 0)
  24. MovementLoopAddLocation(NPC, 167.06, -7.02, -79.39, 2, 0)
  25. MovementLoopAddLocation(NPC, 161.46, -7.01, -77.98, 2, 0)
  26. MovementLoopAddLocation(NPC, 157.93, -6.42, -72.46, 2, 0)
  27. MovementLoopAddLocation(NPC, 156.35, -6.98, -67, 2, 0)
  28. MovementLoopAddLocation(NPC, 156.43, -7.01, -51.27, 2, 0)
  29. MovementLoopAddLocation(NPC, 164.29, -7.01, -51.06, 2, 0)
  30. MovementLoopAddLocation(NPC, 168.79, -7.01, -45.22, 2, 0)
  31. MovementLoopAddLocation(NPC, 177.78, -7.05, -44.64, 2, 0)
  32. MovementLoopAddLocation(NPC, 187.44, -6.96, -54.37, 2, 0)
  33. MovementLoopAddLocation(NPC, 197.28, -6.96, -54.85, 2, 0)
  34. MovementLoopAddLocation(NPC, 187.44, -6.96, -54.37, 2, 0)
  35. MovementLoopAddLocation(NPC, 177.78, -7.05, -44.64, 2, 0)
  36. MovementLoopAddLocation(NPC, 168.79, -7.01, -45.22, 2, 0)
  37. MovementLoopAddLocation(NPC, 164.29, -7.01, -51.06, 2, 0)
  38. MovementLoopAddLocation(NPC, 156.43, -7.01, -51.27, 2, 0)
  39. MovementLoopAddLocation(NPC, 156.35, -6.98, -67, 2, 0)
  40. MovementLoopAddLocation(NPC, 157.93, -6.42, -72.46, 2, 0)
  41. MovementLoopAddLocation(NPC, 161.46, -7.01, -77.98, 2, 0)
  42. MovementLoopAddLocation(NPC, 167.06, -7.02, -79.39, 2, 0)
  43. MovementLoopAddLocation(NPC, 180.93, -6.98, -79.48, 2, 0)
  44. MovementLoopAddLocation(NPC, 170.01, -6.96, -81.99, 2, 0)
  45. MovementLoopAddLocation(NPC, 161.28, -6.99, -78.24, 2, 0)
  46. MovementLoopAddLocation(NPC, 155.83, -7.03, -69.94, 2, 0)
  47. MovementLoopAddLocation(NPC, 155.45, -7.01, -43.45, 2, 0)
  48. MovementLoopAddLocation(NPC, 153.66, -7.01, -42.25, 2, 0)
  49. MovementLoopAddLocation(NPC, 140.08, -6.75, -44.71, 2, 0)
  50. end