Is there any plans to add in the ability to do scripting for a mission?
For example at the end of the mission if I wanted to check to see if the mission obejctive was completed then display a different text event based on whether an objective was achieved something like:
if(flight_objective_complete==true){
sendTxt('Good job');
}else{
sendTxt('You stink');
}