Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. until altitude > 200000
  2. {
  3. lock throttle to (255-airspeed)/10.
  4.  
  5. set controlStick to ship:control.
  6. if altitude < 2500
  7. {
  8. set controlStick:pitch to (25-verticalspeed)/50.
  9. }
  10. else if altitude > 2700
  11. {
  12. set controlStick:pitch to (-15-verticalSpeed)/30.
  13. }
  14. else
  15. {
  16. set controlStick:pitch to .02-verticalSpeed/50.
  17. }
  18.  
  19. }.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement