12.02.2011, 10:34
Actually, #pragma tabsize 0 can cause some problems, just indent the code. Examples:
Wrong indentation:
Good indentation:
So practically, your spacing must be 4 spaces! Not something else!
Wrong indentation:
pawn Код:
CMD:abcd( playerid, params[ ] )
{
ab = GetPlayerColor( playerid );
SendClientMessage( playerid, ab, "This is your color" );
SendClientMessage( playerid, ab, "Abcdefgh" );
return 1;
}
pawn Код:
CMD:abcd( playerid, params[ ] )
{
ab = GetPlayerColor( playerid );
SendClientMessage( playerid, ab, "This is your color" );
SendClientMessage( playerid, ab, "Abcdefgh" );
return 1;
}