Error 6

unmatched }

Xpressionist encountered a structural closing bracket with no opening bracket to it.

This does not work because the last bracket was already closed:

if ( a == b )

{
if ( b == c )

{
Plane.Pitch_X = 10;
}

else

{
Plane.Pitch_X = 20;
}

}

};

There are 3 structural opening brackets but 4 closing brackets.

if ( a == b )

{
if ( b == c )

{
Plane.Pitch_X = 10;
}

else

{
Plane.Pitch_X = 20;
}

};

 

Xpressionist 3