23.09.2013, 11:22
The disconnect is the same thing.
About your second question:
About your second question:
pawn Код:
#define IsOdd(%0) %0 % 2
public OnPlayerConnect( playerid )
{
if( IsOdd( playerid ) ) SetPlayerColor( playerid, COLOR_WHITE_HERE );
else SetPlayerColor( playerid, COLOR_ORANGE_HERE );
// rest
return 1;
}

