14.11.2010, 18:33
Gods give me strength.. please..
A loose indentation means your code isn't indented well.
An example of bad indentation:
Well indented:
Notice how the code is now on equal horizontal lines? That's well indented. Using #pragma tabsize 0 only increases the problems.
A loose indentation means your code isn't indented well.
An example of bad indentation:
pawn Код:
if(IsplayerConnected(playerid)
{
print("Connected");
new string[128];
GetPlayerName(playerid, string, sizeof string);
format(string, sizeof string, "Hello %s!", string);
}
pawn Код:
if(IsplayerConnected(playerid)
{
print("Connected");
new string[128];
GetPlayerName(playerid, string, sizeof string);
format(string, sizeof string, "Hello %s!", string);
}


