ire_minion.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : ire_minion.lua
  3. Script Purpose : Waypoint Path for ire_minion.lua
  4. Script Author : Devn00b
  5. Script Date : 05/17/2020 01:54:40 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 164.96, 7.23, -156.12, 2, math.random(0,25))
  19. MovementLoopAddLocation(NPC, 166.61, 6.88, -150.09, 2, math.random(0,25))
  20. MovementLoopAddLocation(NPC, 170.45, 6.88, -153.24, 2, math.random(0,25))
  21. MovementLoopAddLocation(NPC, 166.03, 6.96, -152.38, 2, math.random(0,25))
  22. MovementLoopAddLocation(NPC, 167.1, 7.15, -158.18, 2, math.random(0,25))
  23. MovementLoopAddLocation(NPC, 168.62, 6.88, -156.76, 2, math.random(0,25))
  24. MovementLoopAddLocation(NPC, 167.21, 7.15, -158.3, 2, math.random(0,25))
  25. MovementLoopAddLocation(NPC, 164.22, 7.15, -152.1, 2, math.random(0,25))
  26. MovementLoopAddLocation(NPC, 167.68, 6.87, -151.05, 2, math.random(0,25))
  27. MovementLoopAddLocation(NPC, 169.79, 6.88, -153.59, 2, math.random(0,25))
  28. MovementLoopAddLocation(NPC, 166.34, 6.94, -153.03, 2, math.random(0,25))
  29. MovementLoopAddLocation(NPC, 166.22, 6.88, -150.57, 2, math.random(0,25))
  30. MovementLoopAddLocation(NPC, 166.34, 6.94, -153.03, 2, math.random(0,25))
  31. MovementLoopAddLocation(NPC, 169.79, 6.88, -153.59, 2, math.random(0,25))
  32. MovementLoopAddLocation(NPC, 167.68, 6.87, -151.05, 2, math.random(0,25))
  33. MovementLoopAddLocation(NPC, 164.22, 7.15, -152.1, 2, math.random(0,25))
  34. MovementLoopAddLocation(NPC, 167.21, 7.15, -158.3, 2, math.random(0,25))
  35. MovementLoopAddLocation(NPC, 168.62, 6.88, -156.76, 2, math.random(0,25))
  36. MovementLoopAddLocation(NPC, 167.1, 7.15, -158.18, 2, math.random(0,25))
  37. MovementLoopAddLocation(NPC, 166.03, 6.96, -152.38, 2, math.random(0,25))
  38. MovementLoopAddLocation(NPC, 170.45, 6.88, -153.24, 2, math.random(0,25))
  39. MovementLoopAddLocation(NPC, 166.61, 6.88, -150.09, 2, math.random(0,25))
  40. MovementLoopAddLocation(NPC, 164.96, 7.23, -156.12, 2, math.random(0,25))
  41. end