KSP-kOS/lib.ks

18 lines
338 B
Plaintext
Raw Normal View History

2021-12-29 01:07:57 +01:00
global function include {
parameter srcpath.
print "Loading " + srcpath + "...".
copypath("0:/" + srcpath, "1:/" + srcpath).
runpath("1:/" + srcpath).
}
global function pause {
parameter msg.
print msg.
wait until terminal:input:getchar() = terminal:input:enter.
}
global function release {
unlock steering.
unlock throttle.
}