Advertisement
sumguytwitches

Seaborgium to orbit

Mar 25th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. brakes on.
  2. lock throttle to 1.
  3. wait 2.
  4. brakes off.
  5. lock p to 0.
  6. lock steering to heading(90,p).
  7. lock throttle to (101e3-apoapsis)/1000.
  8. startup(turbos).
  9. when airspeed > 100 then lock p to 12.
  10. when verticalspeed > 3 then { gear off. startup(vectors). }
  11.  
  12. set keepsupersonic to true.
  13. when true then {
  14. ThrustLimit(vectors, (350-airspeed)*100).
  15. return keepsupersonic.
  16. }
  17. when airspeed > 450 then keepsupersonic off.
  18. when altitude > 20e3 and verticalSpeed < 10 then {ThrustLimit(vectors, 100).}
  19. when altitude > 36000 then {
  20. lock steering to prograde.
  21. }
  22.  
  23. when altitude > body:atm:height and eta:apoapsis < 30 then {
  24. lock throttle to periapsis < body:atm:height.
  25. lock steering to heading(90,3).
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement