Compare commits

..

No commits in common. "b636d4baa28f7f811a31d4b294af95b68196fdae" and "27e5151c370fc45ecb9f8285a5573132045f9ab8" have entirely different histories.

1 changed files with 4 additions and 3 deletions

View File

@ -16,8 +16,8 @@ FUNCTION NOTIFY {
} }
// This section from latest docs. // This section from latest docs.
WAIT UNTIL ship:unpacked. wait until ship:unpacked.
CLEARSCREEN. clearscreen.
NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts."). NOTIFY("Boot sequence complete, prepare to load and compile the flight scripts.").
@ -31,7 +31,8 @@ NOTIFY("Program compiled and ready to run.").
IF ALT:RADAR < 100 { // If our radar alt is lower than 10 IF ALT:RADAR < 100 { // If our radar alt is lower than 10
WAIT 5. WAIT 5.
RUN ascent.ks. // Run the ascent stage! run ascent.ks. // Run the ascent stage!
} else { } else {
NOTIFY("System booted but did not pass pre-flight checks, aborting excecution!"). NOTIFY("System booted but did not pass pre-flight checks, aborting excecution!").
} }