26.04.2011, 13:02
is there any way to check if all the players (the online players ofcours) are in the same team
i mad this but I'm petty sure that's not correct
so all the ideas for this are welcome
i mad this but I'm petty sure that's not correct
so all the ideas for this are welcome
Код:
for(new I = 0; I < MAX_PLAYERS; I++)
{
if GetPlayerTeam(i) == 1
{
new Winner = random(i);
SetPlayerTeam(Winner, 2);
SetPlayerHealth(Winner, 0);
}
}

