ravenous_cube4.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : ravenous_cube4.lua
  3. Script Purpose : Waypoint Path for ravenous_cube4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/28/2020 06:29:46 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, 151.75, -7.01, -50.53, 2, 0)
  18. MovementLoopAddLocation(NPC, 158.59, -7.01, -50.73, 2, 0)
  19. MovementLoopAddLocation(NPC, 164.25, -7.01, -60.43, 2, 0)
  20. MovementLoopAddLocation(NPC, 171.64, -7.08, -60.75, 2, 0)
  21. MovementLoopAddLocation(NPC, 171.97, -7.01, -39.94, 2, 0)
  22. MovementLoopAddLocation(NPC, 152.18, -7.01, -40.24, 2, 0)
  23. MovementLoopAddLocation(NPC, 159.43, -7.01, -60.36, 2, 0)
  24. MovementLoopAddLocation(NPC, 151.69, -7.01, -59.94, 2, 0)
  25. MovementLoopAddLocation(NPC, 173.93, -6.75, -53.33, 2, 0)
  26. MovementLoopAddLocation(NPC, 151.69, -7.01, -59.94, 2, 0)
  27. MovementLoopAddLocation(NPC, 159.43, -7.01, -60.36, 2, 0)
  28. MovementLoopAddLocation(NPC, 152.18, -7.01, -40.24, 2, 0)
  29. MovementLoopAddLocation(NPC, 171.97, -7.01, -39.94, 2, 0)
  30. MovementLoopAddLocation(NPC, 171.64, -7.08, -60.75, 2, 0)
  31. MovementLoopAddLocation(NPC, 164.25, -7.01, -60.43, 2, 0)
  32. MovementLoopAddLocation(NPC, 158.59, -7.01, -50.73, 2, 0)
  33. MovementLoopAddLocation(NPC, 151.75, -7.01, -50.53, 2, 0)
  34. end