loose indentation warnings
#5

Solution you need to indent your code correct to avoid that error. So like this:
pawn Код:
CMD:hi(playerid, params[])
{
        SendClientMessage(playerid, 0xFFFFFFFF, "Hello this is a test");
                return 1;
}

// Example above is wrong.

CMD:hi(playerid, params[])
{
    SendClientMessage(playerid, 0xFFFFFFFF, "Hello this is a test");
    return 1;
}

// Example above is correct.
It's about using the tabs correct. Goodluck
Reply


Messages In This Thread
loose indentation warnings - by sherlock - 01.10.2011, 20:31
Re: loose indentation warnings - by Jafet_Macario - 01.10.2011, 20:32
Re: loose indentation warnings - by Kingunit - 01.10.2011, 20:34
Re: loose indentation warnings - by sherlock - 01.10.2011, 20:39
Re: loose indentation warnings - by Kingunit - 01.10.2011, 20:41
Re: loose indentation warnings - by sherlock - 01.10.2011, 20:42
Re: loose indentation warnings - by Kingunit - 01.10.2011, 20:44

Forum Jump:


Users browsing this thread: 2 Guest(s)