rifter_bleeder22.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : rifter_bleeder22.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder22.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 01:47:28 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, -196.59, -0.39, -125.44, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -197.85, -0.39, -127.37, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -202.03, -0.39, -126.97, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -204.24, -0.39, -123.68, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -210.45, -0.39, -126.14, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -210.72, -0.37, -117.4, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -203.97, -0.39, -117.3, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -199.71, 0, -135.55, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -203.97, -0.39, -117.3, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -210.72, -0.37, -117.4, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -210.45, -0.39, -126.14, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -204.24, -0.39, -123.68, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -202.03, -0.39, -126.97, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -197.85, -0.39, -127.37, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -196.59, -0.39, -125.44, 2, math.random(0,5))
  33. end