kethlerune.lua 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : kethlerune.lua
  3. Script Purpose : Waypoint Path for kethlerune.lua
  4. Script Author : Devn00b
  5. Script Date : 08/01/2020 05:53:37 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, 805.49, -21.7, -551.99, 2, math.random(0,25))
  18. MovementLoopAddLocation(NPC, 786.92, -22.61, -512.9, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 752.87, -21.98, -477.23, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 717.53, -21.25, -459.67, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 709.29, -19.56, -445.07, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 701.44, -16.56, -426.22, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 701.09, -14.85, -412.3, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 683.34, -11.89, -390.41, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 687.32, -13.38, -371.73, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 668.08, -11.74, -363.53, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 648.9, -13.05, -360.14, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 648.55, -14.81, -343.63, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 648.22, -18.15, -328.01, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 651.9, -21.82, -304.38, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 651.91, -19.07, -268.92, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 635.14, -19.34, -256.68, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 613.61, -20.98, -262.87, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 635.14, -19.34, -256.68, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 651.91, -19.07, -268.92, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 651.9, -21.82, -304.38, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 648.22, -18.15, -328.01, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 648.55, -14.81, -343.63, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 648.9, -13.05, -360.14, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 668.08, -11.74, -363.53, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 687.32, -13.38, -371.73, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 683.34, -11.89, -390.41, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 701.09, -14.85, -412.3, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 701.44, -16.56, -426.22, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 709.29, -19.56, -445.07, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 717.53, -21.25, -459.67, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 752.87, -21.98, -477.23, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 786.92, -22.61, -512.9, 2, math.random(0,5))
  49. MovementLoopAddLocation(NPC, 805.49, -21.7, -551.99, 2, math.random(0,25))
  50. end