Code:
[CODE] //Check if the flight computer is working and check program integrity.
//Same for the program that handle fuel level.
if(FlightComputer.IsFunctional)
{
if(!FlightComputer.IsWorking)
{
FlightComputer.ApplyAction("OnOff_On");
if(!FlightComputer.IsWorking)
{
ERRMSG = "Failed to launch "+FLIGHT_PROGRAM_NAME+"."+NLCR+"Flight Computer can't be turned on."; //self note: will display as echo
return false;
}...