14.05.2015, 17:36
Hello how to make this team balance random without that it is chosing after ID's?
Код:
stock TeamBalance()
{
new Humans;
foreach(Player, i)
{
if(Humans < 3)
{
HumanSetup(i);
printf("Selected humans");
Humans ++;
}
else
{
ZombieSetup2(i);
printf("Selected zombies");
Humans = 0;
}
}
printf("Finished Selecting teams");
return 1;
}

