long GM
#3

one tip if your code is something like this

pawn Код:
if(TestVariable[playerid][Testing] == 1)
{
     if(IsPlayerConnected(playerid))
     {
           //codes
     }
}
else
{
    //codes
}
just do

pawn Код:
if(TestVariable[playerid][Testing] == 1) {
      if(IsPlayerConnected(playerd)) {
      //codes
      }
} else {
     //codes
}
this will make your long codes shorter. it defends if you add many efforts in your code
Reply


Messages In This Thread
long GM - by Bleach79 - 22.03.2012, 10:55
Re: long GM - by Bleach79 - 22.03.2012, 11:09
Re: long GM - by Reklez - 22.03.2012, 11:13
Re: long GM - by Rob_Maate - 22.03.2012, 11:22
Re: long GM - by Babul - 22.03.2012, 11:25
Re: long GM - by Spooky - 22.03.2012, 12:21

Forum Jump:


Users browsing this thread: 1 Guest(s)