KosScripts/lib/SASCheck.ks

8 lines
226 B
Plaintext
Raw Permalink Normal View History

2024-07-06 18:35:41 +02:00
function sascheck { //returns the average exaust velocity of active engines. to convert to isp, divide by constant:g0
set saslist to ship:modulesnamed("ModuleSAS").
if saslist:length = 0 {
return false.
}
return true.
}