Lite-C requires brackets around the whole condition in an if statement so this is usually not possible:
Code:
if (a == 0) && !B
and has to look like
Code:
if ((a == 0) && !B)
MY Website with news of my projects: (for example my current Muliplayer Bomberman, GenesisPrecompiler for LiteC and TileMaster, an easy to use Tile editor) Sparetime-Development