05.08.2013, 05:01
Quote:
Nice, but where would this go? And it would check all id's? All even numbers to infinity?
|
actually use just this OnPlayerRequestClass
pawn Код:
if( playerid % 2 == 0 ) // Number is not odd == it is EVEN AND % operator returns remainder.
{
SetPlayerTeam( playerid , 1 );
}
else SetPlayerTeam( playerid , 2 );