Advertisement
wirawafiy1

Ai

Jun 4th, 2023 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. lock throttle to 1.
  2. stage.
  3. wait until SHIP:ALTITUDE > 20000.
  4. lock throttle to 0.
  5. lock steering to heading(90, 80).
  6.  
  7. wait until SHIP:ALTITUDE > 80000.
  8. lock steering to heading(90, 0).
  9.  
  10. wait until SHIP:APOAPSIS > 80000.
  11. lock throttle to 0.
  12.  
  13. wait 1.
  14. print "Coasting to Duna!".
  15.  
  16. lock steering to prograde.
  17. wait until SHIP:BODY = "Duna" AND SHIP:PERIAPSIS > 0.
  18.  
  19. print "Performing aerobraking at Duna!".
  20. lock throttle to 0.
  21. lock steering to retrograde.
  22. wait until SHIP:PERIAPSIS < 30000.
  23.  
  24. print "Circularizing orbit around Duna!".
  25. lock throttle to 1.
  26. lock steering to prograde.
  27. wait until SHIP:PERIAPSIS > 100000.
  28.  
  29. lock throttle to 0.
  30. print "Mission to Duna complete!".
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement