01.09.2009, 22:03
This was in the usefull snipets section and was posted by Seif who is a well known memeber of this community,it works great for me
Код:
// top of your gamemode forward SettingPlayerTeam(); //OnPlayerConnect SetTimerEx("SettingPlayerTeam",10,1,"d",playerid); //Bottom of your script public SettingPlayerTeam() { for(new playerid; playerid < 200; playerid++) SetPlayerTeam(playerid, gTeam[playerid]); return 1; }