08.06.2010, 06:34
You don't have to worry Loose Indentations.
Its just means that you have a code that is
not aligned with others.
Example :
See how the 2nd GivePlayerMoney is not aligned with the others?
Thats Loose Indentation. Don't worry though, it will not affect on
how the way you script functions
But, if your lazy enough just use this :
But I don't recommend you to add that!
I recommend you to fix the alignment of you code.
Its just means that you have a code that is
not aligned with others.
Example :
pawn Код:
public OnPlayerConnect(playerid)
{
GivePlayerMoney(playerid, 2000);
GivePlayerMoney(playerid, 2001);
GivePlayerMoney(playerid, 2002);
return 1;
}
Thats Loose Indentation. Don't worry though, it will not affect on
how the way you script functions
But, if your lazy enough just use this :
pawn Код:
#pragma tabsize 0
I recommend you to fix the alignment of you code.