rifter_bleeder8.lua 762 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : rifter_bleeder8.lua
  3. Script Purpose : Waypoint Path for rifter_bleeder8.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 04:40:10 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -171.31, 1.17, -117.2, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -170.4, -0.3, -131.48, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -210.87, -0.3, -132.07, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -170.4, -0.3, -131.48, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -171.31, 1.17, -117.2, 2, math.random(0,5))
  23. end