ire_minion5.lua 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : ire_minion5.lua
  3. Script Purpose : Waypoint Path for ire_minion5.lua
  4. Script Author : Devn00b
  5. Script Date : 05/18/2020 10:15:57 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, 119.77, 6.91, -43.71, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, 116.4, 6.92, -46.96, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, 118.33, 6.93, -45.1, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, 123.01, 6.85, -48.82, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, 121.47, 6.91, -47.31, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, 119.37, 6.88, -49.66, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, 118.72, 6.86, -49.09, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, 120.83, 6.92, -47.21, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, 120.22, 6.9, -43.11, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, 122.68, 7.24, -45.43, 2, math.random(0,20))
  28. MovementLoopAddLocation(NPC, 123.04, 6.84, -48.83, 2, math.random(0,20))
  29. MovementLoopAddLocation(NPC, 120.89, 6.93, -46.78, 2, math.random(0,20))
  30. MovementLoopAddLocation(NPC, 119.83, 7.23, -47.82, 2, math.random(0,20))
  31. MovementLoopAddLocation(NPC, 120.89, 6.93, -46.78, 2, math.random(0,20))
  32. MovementLoopAddLocation(NPC, 123.04, 6.84, -48.83, 2, math.random(0,20))
  33. MovementLoopAddLocation(NPC, 122.68, 7.24, -45.43, 2, math.random(0,20))
  34. MovementLoopAddLocation(NPC, 120.22, 6.9, -43.11, 2, math.random(0,20))
  35. MovementLoopAddLocation(NPC, 120.83, 6.92, -47.21, 2, math.random(0,20))
  36. MovementLoopAddLocation(NPC, 118.72, 6.86, -49.09, 2, math.random(0,20))
  37. MovementLoopAddLocation(NPC, 119.37, 6.88, -49.66, 2, math.random(0,20))
  38. MovementLoopAddLocation(NPC, 121.47, 6.91, -47.31, 2, math.random(0,20))
  39. MovementLoopAddLocation(NPC, 123.01, 6.85, -48.82, 2, math.random(0,20))
  40. MovementLoopAddLocation(NPC, 118.33, 6.93, -45.1, 2, math.random(0,20))
  41. MovementLoopAddLocation(NPC, 116.4, 6.92, -46.96, 2, math.random(0,20))
  42. MovementLoopAddLocation(NPC, 119.77, 6.91, -43.71, 2, math.random(0,20))
  43. end