22.03.2012, 11:13
one tip if your code is something like this
just do
this will make your long codes shorter. it defends if you add many efforts in your code
pawn Код:
if(TestVariable[playerid][Testing] == 1)
{
if(IsPlayerConnected(playerid))
{
//codes
}
}
else
{
//codes
}
pawn Код:
if(TestVariable[playerid][Testing] == 1) {
if(IsPlayerConnected(playerd)) {
//codes
}
} else {
//codes
}