Aight so
{((Activate13 ? 0 : 1) = 0 ? " STPT 1 ?? AUTO
LAT {Latitude}
LNG {Longitude}
ELEV {Altitude}
TOS 00:00:00" : " UHF MAIN
305.00
¦305.00¦
PRE 1 : TOD
305.00 NB ")}
this aint working rn for some reason.
could someone help me out?
most of the stuff here doesn't matter
but the main body of it is {((Activate13 ? 0 : 1) = 0 ? "Position info goes here" : "radio info goes here")}
and for some damned reason it isnt working at all
it works when I just put a string as the text
but
I need it to show the information
It works when I remove the { } around the coordinates, so I guess you can't nest the { } format strings
.
However, you can add strings to each other. The limitation with this method is you cannot set the format of the numbers
.
{((Activate13 ? 0 : 1) = 0 ? " STPT 1 ?? AUTO
LAT " + Latitude + "
LNG " + Longitude + "
ELEV " + Altitude + "
TOS 00:00:00" : " UHF MAIN
305.00
¦305.00¦
PRE 1 : TOD
305.00 NB ")}
.
If you want to format the numbers, you can split your code into a few pieces, or maybe even a few labels
Maybe try Activate13 = 1 ? stuffwhenon : stuffwhenoff?
cmon man
nothin?