ravenous_cube5.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : ravenous_cube5.lua
  3. Script Purpose : Waypoint Path for ravenous_cube5.lua
  4. Script Author : Devn00b
  5. Script Date : 06/28/2020 06:38:31 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, 170.29, -7.01, -38.71, 2, 0)
  18. MovementLoopAddLocation(NPC, 173.63, -7.32, -58.6, 2, 0)
  19. MovementLoopAddLocation(NPC, 163.97, -7.01, -61.28, 2, 0)
  20. MovementLoopAddLocation(NPC, 158.51, -7.01, -46.78, 2, 0)
  21. MovementLoopAddLocation(NPC, 165.49, -7.01, -46.23, 2, 0)
  22. MovementLoopAddLocation(NPC, 162.43, -7.63, -44.23, 2, 0)
  23. MovementLoopAddLocation(NPC, 162.06, -7.63, -37.94, 2, 0)
  24. MovementLoopAddLocation(NPC, 152.71, -7.01, -42.85, 2, 0)
  25. MovementLoopAddLocation(NPC, 151.75, -7.01, -49.97, 2, 0)
  26. MovementLoopAddLocation(NPC, 161.14, -7.55, -48.41, 2, 0)
  27. MovementLoopAddLocation(NPC, 173.74, -6.8, -51.91, 2, 0)
  28. MovementLoopAddLocation(NPC, 161.14, -7.55, -48.41, 2, 0)
  29. MovementLoopAddLocation(NPC, 151.75, -7.01, -49.97, 2, 0)
  30. MovementLoopAddLocation(NPC, 152.71, -7.01, -42.85, 2, 0)
  31. MovementLoopAddLocation(NPC, 162.06, -7.63, -37.94, 2, 0)
  32. MovementLoopAddLocation(NPC, 162.43, -7.63, -44.23, 2, 0)
  33. MovementLoopAddLocation(NPC, 165.49, -7.01, -46.23, 2, 0)
  34. MovementLoopAddLocation(NPC, 158.51, -7.01, -46.78, 2, 0)
  35. MovementLoopAddLocation(NPC, 163.97, -7.01, -61.28, 2, 0)
  36. MovementLoopAddLocation(NPC, 173.63, -7.32, -58.6, 2, 0)
  37. MovementLoopAddLocation(NPC, 170.29, -7.01, -38.71, 2, 0)
  38. end