Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //CMLS READOUT
- //Version 0.1
- PRINT FLOOR(SHIP:ALTITUDE) + " " AT(6,2).
- IF ALTITUDE <=50000 { //Prints surface velocity below 50km, orbital above
- PRINT ROUND(VELOCITY:SURFACE:MAG,1) + " " AT(22,2).
- } ELSE {
- PRINT ROUND(VELOCITY:ORBIT:MAG,1) + " " AT(22,2).
- }. //IF-ELSE
- PRINT missionClock AT(39,2).
- PRINT activeStage AT(6,3).
- PRINT ROUND((loxRemaining * 100), 1) + "% " AT(22,3).
- IF fairingSep = FALSE { //Prints ATCHD or SPRTD depending on whether the fairings are still on
- PRINT "ATCHD" + " " AT(39,3).
- } ELSE {
- PRINT "SPRTD" + " " AT(39,3).
- }. //IF-ELSE
- WAIT (1 / updateRes). //Update resolution turned into fraction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement