bloodsaber_proficient4.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : bloodsaber_proficient4.lua
  3. Script Purpose : Waypoint Path for bloodsaber_proficient4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/12/2020 07:05:01 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 26.57, -0.08, -196.44, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, 27.48, -0.08, -202.2, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 23.14, -0.08, -204.49, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 18.83, -0.08, -202.93, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 19.08, -0.08, -198.84, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 18.94, -0.08, -202.88, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 15.78, -0.21, -203.08, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 22.9, -0.08, -196.17, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 21.66, -0.08, -195.92, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 24.27, -0.08, -198.99, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 25.06, -0.08, -196.21, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 24.27, -0.08, -198.99, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 21.66, -0.08, -195.92, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 22.9, -0.08, -196.17, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 15.78, -0.21, -203.08, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 18.94, -0.08, -202.88, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 19.08, -0.08, -198.84, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 18.83, -0.08, -202.93, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 23.14, -0.08, -204.49, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 27.48, -0.08, -202.2, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 26.57, -0.08, -196.44, 2, math.random(0,5))
  38. end