ire_minion17.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : ire_minion17.lua
  3. Script Purpose : Waypoint Path for ire_minion17.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 04:17:02 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, 0.38, 0.03, -190.11, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, -1.3, -0.15, -192.96, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 1.17, -0.05, -187.73, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, -1.27, -0.12, -187.99, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, -4.5, -0.1, -187.8, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, -2.43, -0.15, -193.02, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, -4.27, 0.05, -191.86, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, -0.22, 0, -192.19, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, -1.61, -0.13, -189.81, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 0.95, -0.06, -187.73, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, -4.23, -0.08, -190.15, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, -3.44, -0.09, -193.14, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, -3.18, -0.14, -187.73, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 0.75, -0.03, -189.65, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, -4.9, 0.18, -190.28, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 0.75, -0.03, -189.65, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, -3.18, -0.14, -187.73, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, -3.44, -0.09, -193.14, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, -4.23, -0.08, -190.15, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, 0.95, -0.06, -187.73, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, -1.61, -0.13, -189.81, 2, math.random(0,10))
  38. MovementLoopAddLocation(NPC, -0.22, 0, -192.19, 2, math.random(0,10))
  39. MovementLoopAddLocation(NPC, -4.27, 0.05, -191.86, 2, math.random(0,10))
  40. MovementLoopAddLocation(NPC, -2.43, -0.15, -193.02, 2, math.random(0,10))
  41. MovementLoopAddLocation(NPC, -4.5, -0.1, -187.8, 2, math.random(0,10))
  42. MovementLoopAddLocation(NPC, -1.27, -0.12, -187.99, 2, math.random(0,10))
  43. MovementLoopAddLocation(NPC, 1.17, -0.05, -187.73, 2, math.random(0,10))
  44. MovementLoopAddLocation(NPC, -1.3, -0.15, -192.96, 2, math.random(0,10))
  45. MovementLoopAddLocation(NPC, 0.38, 0.03, -190.11, 2, math.random(0,10))
  46. end