ire_minion15.lua 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : ire_minion15.lua
  3. Script Purpose : Waypoint Path for ire_minion15.lua
  4. Script Author : Devn00b
  5. Script Date : 06/09/2020 12:48:41 AM
  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, 32.65, -0.17, -46.51, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 30.5, -0.16, -48.77, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 26.63, -0.19, -45.49, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 29.48, -0.15, -46.33, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 28.06, -0.22, -44.32, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 29.63, -0.19, -42.37, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 34.85, -0.17, -45.05, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 33.09, -0.17, -45.29, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 29.86, -0.15, -45.52, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 32.17, -0.17, -43.77, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 28.24, -0.22, -42.91, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 31.56, -0.17, -42.41, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 27.33, -0.16, -46.32, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 31.29, -0.17, -47.99, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 31.61, -0.17, -41.98, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 31.11, -0.16, -45.62, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 29, -0.21, -43.46, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 29.31, -0.15, -46.22, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 33.86, -0.17, -45.27, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 28.34, -0.22, -42.92, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 33.86, -0.17, -45.27, 2, math.random(0,15))
  38. MovementLoopAddLocation(NPC, 29.31, -0.15, -46.22, 2, math.random(0,15))
  39. MovementLoopAddLocation(NPC, 29, -0.21, -43.46, 2, math.random(0,15))
  40. MovementLoopAddLocation(NPC, 31.11, -0.16, -45.62, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 31.61, -0.17, -41.98, 2, math.random(0,15))
  42. MovementLoopAddLocation(NPC, 31.29, -0.17, -47.99, 2, math.random(0,15))
  43. MovementLoopAddLocation(NPC, 27.33, -0.16, -46.32, 2, math.random(0,15))
  44. MovementLoopAddLocation(NPC, 31.56, -0.17, -42.41, 2, math.random(0,15))
  45. MovementLoopAddLocation(NPC, 28.24, -0.22, -42.91, 2, math.random(0,15))
  46. MovementLoopAddLocation(NPC, 32.17, -0.17, -43.77, 2, math.random(0,15))
  47. MovementLoopAddLocation(NPC, 29.86, -0.15, -45.52, 2, math.random(0,15))
  48. MovementLoopAddLocation(NPC, 33.09, -0.17, -45.29, 2, math.random(0,15))
  49. MovementLoopAddLocation(NPC, 34.85, -0.17, -45.05, 2, math.random(0,15))
  50. MovementLoopAddLocation(NPC, 29.63, -0.19, -42.37, 2, math.random(0,15))
  51. MovementLoopAddLocation(NPC, 28.06, -0.22, -44.32, 2, math.random(0,15))
  52. MovementLoopAddLocation(NPC, 29.48, -0.15, -46.33, 2, math.random(0,15))
  53. MovementLoopAddLocation(NPC, 26.63, -0.19, -45.49, 2, math.random(0,15))
  54. MovementLoopAddLocation(NPC, 30.5, -0.16, -48.77, 2, math.random(0,15))
  55. MovementLoopAddLocation(NPC, 32.65, -0.17, -46.51, 2, math.random(0,15))
  56. end