23.05.2015, 16:46
Hello, how can i make that this chooses more players instead of one?
Код:
stock TeamBalance()
{
new count = 0;
new Random = Iter_Random(Player);
foreach(Player, i)
{
if(team[i] == TEAM_RED) count++;
if(count == Iter_Count(Player))
{
ZombieSetup(Random);
}
}
return 1;
}

