You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New GCS crashes with parser error : xmlParseEntityRef: no name ="(((Or(!(InsideFlyzone(GetPosX(),GetPosY())),(GetPosAlt()>(GetAltRef() 1500)))&&!((nav_block==IndexOfBlock('RW.Wait_GPS'))))&...
The text was updated successfully, but these errors were encountered:
I will work on supporting the procedure in the new GCS, but the last error you mention is because of the > and && which are invalid in an XML file.
You can replace && by @AND and > by @GT.
<exception cond="GetPosAlt() @GT 20.0" deroute="Standby"/>
givesLexing error in '(GetPosAlt()
<exception cond="agl_dist_valid @AND (agl_dist_value @LT 0.28)" deroute="flare_low"/>
givesLexing error in '(agl_dist_valid&&(agl_dist_value
parser error : xmlParseEntityRef: no name ="(((Or(!(InsideFlyzone(GetPosX(),GetPosY())),(GetPosAlt()>(GetAltRef() 1500)))&&!((nav_block==IndexOfBlock('RW.Wait_GPS'))))&...
The text was updated successfully, but these errors were encountered: