Warnings ! HELP !
#2

Loose indentation means that you r not indenting ur code perfectly.
For ex:
Код:
CMD:test(playerid, params[])
    {
SendClientMessage(playerid, -1, "Test");
              return 1;
}
This is wrong!

This is correct
Код:
CMD:test(playerid, params[])
{
    SendClientMessage(playerid, -1, "Test");
    return 1;
}
This code is easier to understand right? Well thats the solution for ur loose inderntations.

And for the params and help, you must have defined/declared them but must not have used them. Show me ur line 18093


You can also add
Код:
#pragma tabsize 0
to fix ur warnings
Reply


Messages In This Thread
Warnings ! HELP ! - by puki7 - 21.01.2014, 13:56
Re: Warnings ! HELP ! - by UnknownOwner - 21.01.2014, 14:00
Re: Warnings ! HELP ! - by Avi Raj - 21.01.2014, 14:01
Re: Warnings ! HELP ! - by Flake. - 21.01.2014, 14:02

Forum Jump:


Users browsing this thread: 1 Guest(s)