rifter_bleeder12.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : rifter_bleeder12.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder12.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 01:01:50 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, -210.7, -0.09, -134.4, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -206.13, -0.39, -123.32, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -200.41, -0.39, -122.85, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -209.1, -0.39, -124.64, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -208.45, 0, -114.64, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -198.5, -0.39, -124.33, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -201.54, -0.39, -127.25, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -205.49, -0.39, -124.81, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -201.54, -0.39, -127.25, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -198.5, -0.39, -124.33, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -208.45, 0, -114.64, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -209.1, -0.39, -124.64, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -200.41, -0.39, -122.85, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -206.13, -0.39, -123.32, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -210.7, -0.09, -134.4, 2, math.random(0,5))
  33. end