7 Warning ! Plz Help Me
#5

Loose identation is a warning caused by some spaces .. I will expalin it with an example

pawn Код:
if(strcmp(cmd,"/buylicense",true)==0)
   {
   SetPlayerPos(playerid,123,456,789);
     SendClientMessage(playerid,COLOR_YELLOW,"Hey");
   return 1;

   }
The above code would give a warning .. The below code is correct

pawn Код:
if(strcmp(cmd,"/buylicense",true)==0)
   {
   SetPlayerPos(playerid,123,456,789);
   SendClientMessage(playerid,COLOR_YELLOW,"Hey");
   return 1;

   }
Reply


Messages In This Thread
7 Warning ! Plz Help Me - by monster010 - 16.09.2009, 13:25
Re: 7 Warning ! Plz Help Me - by Correlli - 16.09.2009, 13:28
Re: 7 Warning ! Plz Help Me - by monster010 - 16.09.2009, 13:32
Re: 7 Warning ! Plz Help Me - by Correlli - 16.09.2009, 13:33
Re: 7 Warning ! Plz Help Me - by Peter_Corneile - 16.09.2009, 13:42
Re: 7 Warning ! Plz Help Me - by Mikep. - 16.09.2009, 15:08
Re: 7 Warning ! Plz Help Me - by Calgon - 16.09.2009, 15:36
Re: 7 Warning ! Plz Help Me - by Correlli - 16.09.2009, 16:24
Re: 7 Warning ! Plz Help Me - by Hiitch - 16.09.2009, 22:16
Re: 7 Warning ! Plz Help Me - by Correlli - 17.09.2009, 05:16

Forum Jump:


Users browsing this thread: 2 Guest(s)