ire_minion9.lua 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --[[
  2. Script Name : ire_minion9.lua
  3. Script Purpose : Waypoint Path for ire_minion9.lua
  4. Script Author : Devn00b
  5. Script Date : 05/20/2020 02:40:38 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, 143.94, 7.14, -77.51, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 138.68, 6.89, -80.03, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 138.17, 6.89, -77.98, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 144.28, 7.02, -80.02, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 140.34, 6.88, -77.17, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 140.16, 7.24, -79.83, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 141.54, 6.98, -78.05, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 142.77, 7.24, -79.8, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 142.61, 7.09, -77.85, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 139.54, 6.89, -78.02, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 141.28, 7.89, -81.2, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 139.54, 6.89, -78.02, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 142.61, 7.09, -77.85, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 142.77, 7.24, -79.8, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 141.54, 6.98, -78.05, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, 140.16, 7.24, -79.83, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, 140.34, 6.88, -77.17, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, 144.28, 7.02, -80.02, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, 138.17, 6.89, -77.98, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, 138.68, 6.89, -80.03, 2, math.random(0,10))
  38. MovementLoopAddLocation(NPC, 143.94, 7.14, -77.51, 2, math.random(0,10))
  39. end