Advertisement
sumguytwitches

Untitled

Jan 30th, 2023
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1.  
  2. function fuelformun {
  3. radiators on.
  4.  
  5. set isrs to ship:modulesnamed("ModuleResourceConverter").
  6.  
  7. for isr in isrs { if isr:hasaction("start isru [ox]") isr:doaction("start isru [ox]",true).}
  8.  
  9. set warp to 1. wait 1. set warp to 5.
  10. wait until ship:oxidizer * 9 / 11 >= ship:liquidfuel.
  11. isru off.
  12. for isr in isrs { if isr:hasaction("start isru [lf+ox]") isr:doaction("start isru [lf+ox]",true).}
  13. lock vectordv to Round(315 * 9.81 * ln(ship:mass / (ship:mass - (ship:liquidfuel * 0.005) - (ship:oxidizer * 0.005))), 5).
  14. wait until vectordv >= 600.
  15. isru off.
  16. for isr in isrs { if isr:hasaction("start isru [lqdfuel]") isr:doaction("start isru [lqdfuel]",true).}
  17. wait until ship:ore < 1.
  18. isru off.
  19. set warp to 0.
  20. radiators off.
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement