bloodsaber_ritualist.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : bloodsaber_ritualist.lua
  3. Script Purpose : Waypoint Path for bloodsaber_ritualist.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 02:40:16 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, 28.4, -0.16, -156.42, 2, math.random(0,20))
  18. MovementLoopAddLocation(NPC, 30, -0.16, -166.18, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, 34.9, -0.16, -156.03, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, 34.77, -0.16, -166.04, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, 26.09, -0.16, -161.26, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, 40.77, 0.02, -161.04, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, 25.42, -0.16, -166.57, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, 40.77, 0.02, -161.04, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, 26.09, -0.16, -161.26, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, 34.77, -0.16, -166.04, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, 34.9, -0.16, -156.03, 2, math.random(0,20))
  28. MovementLoopAddLocation(NPC, 30, -0.16, -166.18, 2, math.random(0,20))
  29. MovementLoopAddLocation(NPC, 28.4, -0.16, -156.42, 2, math.random(0,20))
  30. end