rifter_bleeder16.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : rifter_bleeder16.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder16.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 01:26:53 AM
  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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -202.05, -0.39, -125.2, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -203.47, -0.39, -121.89, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -199.59, -0.39, -122.83, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -198.92, -0.39, -127.91, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -204.46, -0.39, -127.71, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -203.9, -0.39, -122.2, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -199.88, -0.39, -122.35, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -204.17, -0.39, -127.68, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -198.74, -0.39, -128.13, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -204.28, -0.39, -122.53, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -198.74, -0.39, -128.13, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -204.17, -0.39, -127.68, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -199.88, -0.39, -122.35, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -203.9, -0.39, -122.2, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -204.46, -0.39, -127.71, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -198.92, -0.39, -127.91, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -199.59, -0.39, -122.83, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, -203.47, -0.39, -121.89, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, -202.05, -0.39, -125.2, 2, math.random(0,5))
  37. end