help please
#3

You need to indent your code.
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;
}
Auto indent your code
Tutorial
Reply


Messages In This Thread
help please - by MA_proking - 05.07.2011, 07:09
Re: help please - by Skaizo - 05.07.2011, 07:11
Re: help please - by Wesley221 - 05.07.2011, 07:44
Re: help please - by Mean - 05.07.2011, 07:48
Re: help please - by iggy1 - 05.07.2011, 07:49

Forum Jump:


Users browsing this thread: 1 Guest(s)