ok I fixed all the original errors with the following, but now the score shows scalar array instead of a number, any ideas?
?!(local server):goto "end"
westscore==0
eastscore==0
resscore==0
#start
?westhere and !easthere and !reshere:goto "westscore"
?easthere and !westhere and !reshere:goto "eastscore"
?reshere and !easthere and !westhere:goto "resscore"
?westhere and easthere and reshere:goto "start"
?!westhere and !easthere and !reshere:goto "start"
?westhere and easthere or reshere:goto "start"
?easthere and westhere or reshere:goto "start"
?reshere and westhere or reshere:goto "start"
goto "start"
#westscore
westscore=westscore+1
~5
titletext[format["MISSION STATUS:\nNATO %1 <-> Soviets %2 <-> Resistance %3",westscore,eastcore,resscore],"PLAIN DOWN"]
goto "start"
#eastscore
eastscore=eastscore+1
~5
titletext[format["MISSION STATUS:\nNATO %1 <-> Soviets %2 <-> Resistance %3",westscore,eastcore,resscore],"PLAIN DOWN"]
goto "start"
#resscore
resscore=resscore+1
~5
titletext[format["MISSION STATUS:\nNATO %1 <-> Soviets %2 <-> Resistance %3",westscore,eastcore,resscore],"PLAIN DOWN"]
goto "start"
#end
exit