Help Newbie with 3 warnings
#3

Third warning:
pawn Код:
// Bad indented code
CMD:something( playerid, params[ ] )
  {
 SendClientMessage( playerid, 0xAAAAAA, "Hello" );
      SendClientMessage( playerid, 0xAAAAAA, "there. " );
return 1;
}
Meaning your code isn't sorted well, correct indenting:
pawn Код:
CMD:something( playerid, params[ ] )
{
    SendClientMessage( playerid, 0xAAAAAA, "Hello" );
    SendClientMessage( playerid, 0xAAAAAA, "there. " );
    return 1;
}
Reply


Messages In This Thread
Help Newbie with 3 warnings - by Immortal_LTU - 03.04.2011, 17:41
Re: Help Newbie with 3 warnings - by RenisiL - 03.04.2011, 17:43
Re: Help Newbie with 3 warnings - by Mean - 03.04.2011, 17:47
Re: Help Newbie with 3 warnings - by Immortal_LTU - 03.04.2011, 17:48
Re: Help Newbie with 3 warnings - by Mean - 03.04.2011, 17:55
Re: Help Newbie with 3 warnings - by Immortal_LTU - 03.04.2011, 17:57

Forum Jump:


Users browsing this thread: 1 Guest(s)