05.07.2011, 07:44
You need to indent your code.
Example:
Auto indent your code
Tutorial
Example:
pawn Код:
// A not indented code:
COMMAND:example(playerid, cmdtext)
{
if(IsPlayerAdmin(playerid))
{
Kick(playerid);
}
return 1;
}
// An indented code
COMMAND:example(playerid, cmdtext)
{
if(IsPlayerAdmin(playerid))
{
Kick(playerid);
}
return 1;
}
Tutorial