woodrow.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --[[
  2. Script Name : woodrow.lua
  3. Script Purpose : Waypoint Path for woodrow.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 06:13:14 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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 673.7, -21.14, 144.6, 2, 0)
  19. MovementLoopAddLocation(NPC, 682.32, -20.67, 157.2, 2, 0)
  20. MovementLoopAddLocation(NPC, 721.58, -19.64, 183.31, 2, 0)
  21. MovementLoopAddLocation(NPC, 724.37, -19.88, 185.32, 2, 0)
  22. MovementLoopAddLocation(NPC, 778.22, -21.01, 178.06, 2, 0)
  23. MovementLoopAddLocation(NPC, 743.16, -20.65, 189.88, 2, 0)
  24. MovementLoopAddLocation(NPC, 744.9, -19.02, 198.56, 2, 0)
  25. MovementLoopAddLocation(NPC, 739.77, -20.59, 189.28, 2, 0)
  26. MovementLoopAddLocation(NPC, 721.95, -19.32, 203.18, 2, 0)
  27. MovementLoopAddLocation(NPC, 720.31, -19.56, 194.64, 2, 0)
  28. MovementLoopAddLocation(NPC, 707.27, -19.53, 196.34, 2, 0)
  29. MovementLoopAddLocation(NPC, 702.15, -19.49, 176.73, 2, 0)
  30. MovementLoopAddLocation(NPC, 675.8, -20.59, 157.81, 2, 0)
  31. MovementLoopAddLocation(NPC, 668.62, -21.19, 145.22, 2, 0)
  32. MovementLoopAddLocation(NPC, 666.2, -21.3, 132.47, 2, 0)
  33. MovementLoopAddLocation(NPC, 663.46, -21.16, 105.58, 2, 0)
  34. MovementLoopAddLocation(NPC, 654.3, -20.75, 102.88, 2, 0)
  35. MovementLoopAddLocation(NPC, 643.14, -20.66, 97.19, 2, 0)
  36. MovementLoopAddLocation(NPC, 626.94, -26.4, 103.99, 2, 0)
  37. MovementLoopAddLocation(NPC, 643.14, -20.66, 97.19, 2, 0)
  38. MovementLoopAddLocation(NPC, 654.3, -20.75, 102.88, 2, 0)
  39. MovementLoopAddLocation(NPC, 663.46, -21.16, 105.58, 2, 0)
  40. MovementLoopAddLocation(NPC, 666.2, -21.3, 132.47, 2, 0)
  41. MovementLoopAddLocation(NPC, 668.62, -21.19, 145.22, 2, 0)
  42. MovementLoopAddLocation(NPC, 675.8, -20.59, 157.81, 2, 0)
  43. MovementLoopAddLocation(NPC, 702.15, -19.49, 176.73, 2, 0)
  44. MovementLoopAddLocation(NPC, 707.27, -19.53, 196.34, 2, 0)
  45. MovementLoopAddLocation(NPC, 720.31, -19.56, 194.64, 2, 0)
  46. MovementLoopAddLocation(NPC, 721.95, -19.32, 203.18, 2, 0)
  47. MovementLoopAddLocation(NPC, 739.77, -20.59, 189.28, 2, 0)
  48. MovementLoopAddLocation(NPC, 744.9, -19.02, 198.56, 2, 0)
  49. MovementLoopAddLocation(NPC, 743.16, -20.65, 189.88, 2, 0)
  50. MovementLoopAddLocation(NPC, 778.22, -21.01, 178.06, 2, 0)
  51. MovementLoopAddLocation(NPC, 724.37, -19.88, 185.32, 2, 0)
  52. MovementLoopAddLocation(NPC, 721.58, -19.64, 183.31, 2, 0)
  53. MovementLoopAddLocation(NPC, 682.32, -20.67, 157.2, 2, 0)
  54. MovementLoopAddLocation(NPC, 673.7, -21.14, 144.6, 2, 0)
  55. end