16.09.2009, 13:42
Loose identation is a warning caused by some spaces .. I will expalin it with an example
The above code would give a warning .. The below code is correct
pawn Код:
if(strcmp(cmd,"/buylicense",true)==0)
{
SetPlayerPos(playerid,123,456,789);
SendClientMessage(playerid,COLOR_YELLOW,"Hey");
return 1;
}
pawn Код:
if(strcmp(cmd,"/buylicense",true)==0)
{
SetPlayerPos(playerid,123,456,789);
SendClientMessage(playerid,COLOR_YELLOW,"Hey");
return 1;
}