24.05.2015, 02:13
Let me translate that for you:
It depends on what the variable "playerOnline" holds.
pawn Код:
if(playerOnline >= 2 && playerOnline <= 8)
{
if(GetTeamPlayersAlive(TEAM_RED) >= 0 && GetTeamPlayersAlive(TEAM_RED) <= 3)
{
TeamBalance();
}
}
if the variable "playerOnline" is above or equal to 2 AND if the variable "playerOnline" is below or equal to 3 => CONTINUE SEQUENCE
{
if the condition "GetTeamPlayersAlive(TEAM_RED)" is above or equal to 0 AND if the condition "GetTeamPlayersAlive(TEAM_RED)" is below or equal to 3 => CONTINUE SEQUENCE
{
if all the conditions above are TRUE => PERFORM "TeamBalance();"
}
}