forager3.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : forager3.lua
  3. Script Purpose : Waypoint Path for forager3.lua
  4. Script Author : Devn00b
  5. Script Date : 05/12/2020 12:51:03 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -99.62, -0.08, -120.93, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, -84.65, -0.06, -135.33, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, -86.72, -0.08, -139.76, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, -90.29, -0.06, -141.64, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, -76.12, -0.08, -134.93, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, -76.59, -0.08, -127.34, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, -86.36, -0.04, -121.45, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, -84.34, -0.11, -108.14, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, -75.67, -0.11, -109.61, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, -67.2, -0.11, -97.82, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, -58.84, -0.07, -95.67, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, -59.26, -0.08, -84.87, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, -55.08, -0.08, -71.06, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, -48.77, -0.09, -64.95, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, -37.84, -0.1, -68.68, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, -48.77, -0.09, -64.95, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, -55.08, -0.08, -71.06, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, -59.26, -0.08, -84.87, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, -58.84, -0.07, -95.67, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, -67.2, -0.11, -97.82, 2, math.random(0,10))
  38. MovementLoopAddLocation(NPC, -75.67, -0.11, -109.61, 2, math.random(0,10))
  39. MovementLoopAddLocation(NPC, -84.34, -0.11, -108.14, 2, math.random(0,10))
  40. MovementLoopAddLocation(NPC, -86.36, -0.04, -121.45, 2, math.random(0,10))
  41. MovementLoopAddLocation(NPC, -76.59, -0.08, -127.34, 2, math.random(0,10))
  42. MovementLoopAddLocation(NPC, -76.12, -0.08, -134.93, 2, math.random(0,10))
  43. MovementLoopAddLocation(NPC, -90.29, -0.06, -141.64, 2, math.random(0,10))
  44. MovementLoopAddLocation(NPC, -86.72, -0.08, -139.76, 2, math.random(0,10))
  45. MovementLoopAddLocation(NPC, -84.65, -0.06, -135.33, 2, math.random(0,10))
  46. MovementLoopAddLocation(NPC, -99.62, -0.08, -120.93, 2, math.random(0,10))
  47. end