quiver.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : quiver.lua
  3. Script Purpose : Waypoint Path for quiver.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 02:18:27 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, 652.32, -21.8, -293.93, 2, math.random(0,8))
  18. MovementLoopAddLocation(NPC, 651.74, -21.76, -304.88, 2, math.random(0,8))
  19. MovementLoopAddLocation(NPC, 650.17, -20.54, -316.06, 2, math.random(0,8))
  20. MovementLoopAddLocation(NPC, 649.24, -14.26, -346.28, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 652.08, -21.85, -304.26, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 652.86, -21.73, -293.47, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 639.82, -19.06, -263.64, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 609.41, -21.12, -231.44, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 631.24, -19.46, -225.47, 2, math.random(0,8))
  26. MovementLoopAddLocation(NPC, 667.39, -17.07, -249.41, 2, math.random(0,8))
  27. MovementLoopAddLocation(NPC, 688.15, -16.31, -257.15, 2, math.random(0,8))
  28. MovementLoopAddLocation(NPC, 696.65, -17.58, -270.46, 2, math.random(0,8))
  29. MovementLoopAddLocation(NPC, 717.44, -17.09, -281.83, 2, math.random(0,8))
  30. MovementLoopAddLocation(NPC, 720.13, -17.04, -293.23, 2, math.random(0,8))
  31. MovementLoopAddLocation(NPC, 717.44, -17.09, -281.83, 2, math.random(0,8))
  32. MovementLoopAddLocation(NPC, 696.65, -17.58, -270.46, 2, math.random(0,8))
  33. MovementLoopAddLocation(NPC, 688.15, -16.31, -257.15, 2, math.random(0,8))
  34. MovementLoopAddLocation(NPC, 667.39, -17.07, -249.41, 2, math.random(0,8))
  35. MovementLoopAddLocation(NPC, 631.24, -19.46, -225.47, 2, math.random(0,8))
  36. MovementLoopAddLocation(NPC, 609.41, -21.12, -231.44, 2, math.random(0,8))
  37. MovementLoopAddLocation(NPC, 639.82, -19.06, -263.64, 2, math.random(0,8))
  38. MovementLoopAddLocation(NPC, 652.86, -21.73, -293.47, 2, math.random(0,8))
  39. MovementLoopAddLocation(NPC, 652.08, -21.85, -304.26, 2, math.random(0,8))
  40. MovementLoopAddLocation(NPC, 649.24, -14.26, -346.28, 2, math.random(0,8))
  41. MovementLoopAddLocation(NPC, 650.17, -20.54, -316.06, 2, math.random(0,8))
  42. MovementLoopAddLocation(NPC, 651.74, -21.76, -304.88, 2, math.random(0,8))
  43. MovementLoopAddLocation(NPC, 652.32, -21.8, -293.93, 2, math.random(0,8))
  44. end