21.01.2011, 12:31
you can use "OnPlayerSpawn" and set his skin, and team, etc. back to his old team...
e.g.
e.g.
pawn Код:
public OnPlayerSpawn(playerid)
{
if(GetPlayerTeam(playerid) == 1)
{
SetPlayerSkin(playerid, team1skin);
SetPlayerColor(playerid, team1color);
}
return 1;
}