Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. set cruisealt to 100.
  2. set thr to 0.
  3. lock throttle to thr.
  4. clearscreen.
  5. set t to 3.
  6.  
  7. until (t < 1) {
  8. print t at (0,0).
  9. set t to t - 1.
  10. wait 1.
  11. }.
  12.  
  13. lock steering to R(0,0,135) + UP.
  14. set thr to 1.
  15.  
  16. toggle AG1.
  17. wait until apoapsis > cruisealt.
  18.  
  19. set thr to 0.
  20. wait until altitude > cruisealt - 50.
  21.  
  22. RCS on.
  23. lock steering to R(0,0,135) + UP + R(0,-70,0).
  24. wait until ship:facing:yaw < (UP:yaw - 60).
  25.  
  26. RCS off.
  27. set thr to 1.
  28. toggle AG2.
  29. wait until stage:solidfuel = 0.
  30.  
  31. wait 0.5.
  32. toggle AG3.
  33.  
  34. until stage:liquidfuel = 0 {
  35. lock steering to R(0,0,90) + UP + R(0,-65,0).
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement