04.08.2011, 05:59
An example would be:
PHP код:
new colors[MAX_PLAYERS];
public OnPlayerSpawn(playerid)
{
if(colors[playerid] == 1)
{
SetPlayerColor(playerid, 0xFFFF00AA);
}
else if(colors[playerid] == 2)
{
SetPlayerColor(playerid, 0xFFE4C4AA);
}
return 1;
}