rifter_bleeder23.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : rifter_bleeder23.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder23.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 01:50:03 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, -198.65, -0.39, -124.15, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -203.45, -0.39, -127.71, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -198.98, -0.39, -128.37, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -204.24, -0.39, -122.48, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -200.28, -0.39, -121.67, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -201.78, -0.39, -125.94, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -203.68, -0.39, -127.17, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -199.08, -0.39, -127.2, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -203.68, -0.39, -127.17, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -201.78, -0.39, -125.94, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -200.28, -0.39, -121.67, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -204.24, -0.39, -122.48, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -198.98, -0.39, -128.37, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -203.45, -0.39, -127.71, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -198.65, -0.39, -124.15, 2, math.random(0,5))
  33. end