Guest User

Untitled

a guest
Jul 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. function ReturnAllToDroneBay()
  2. {
  3. if ${This.WaitingForDrones} > 0
  4. {
  5. return
  6. }
  7. while ${This.DronesInSpace} > 0
  8. {
  9. if ${MyShip.ArmorPct} < (${Config.Combat.MinimumArmorPct}-10) || \
  10. ${MyShip.ShieldPct} < (${Config.Combat.MinimumShieldPct} - 10) || \
  11. (${MyShip.ShieldPct} < 15 && ${Config.Combat.MinimumShieldPct} > 0) || \
  12. ${MyShip.ArmorPct} < 15
  13. {
  14. UI:UpdateConsole["OUR SHIT IS FUCKED UP FUCK THE DRONES"]
  15. break
  16. }
  17. UI:UpdateConsole["Recalling ${This.ActiveDroneIDList.Used} Drones"]
  18. EVE:DronesReturnToDroneBay[This.ActiveDroneIDList]
  19. wait 20
  20. }
  21. }
Add Comment
Please, Sign In to add comment