Posts
167
Respect
44Add +1
Forum Rank
Pack-a-Puncher
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!
players[0].team = "red";players[0].team = "blu";teams()
{
players = getplayers();
for(i=0;i<players.size;i++)
{
if( players.size == 2 )
{
players[0].team = "red";
players[1].team = "blu";
}
else if( players.size == 3 )
{
players[0].team = "red";
players[1].team = "red";
players[2].team = "blu";
}
else if( players.size == 4 )
{
players[0].team = "red";
players[1].team = "red";
players[2].team = "blu";
players[3].team = "blu";
}
}
}
![]() | |
![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
![]() | Has shown excellence and experience in the area of custom scripting in the UGX-Mods community. |
![]() BO3 Modtools Alpha | This user has access to the Black Ops 3 Modtools Alpha |
set_teams()
{
players = get_players();
players = array_randomize(players); //randomize players
for(i = 0; i < players.size; i++)
{
if(i % 2 == 0) //even
players[i].da_team = "red";
else //odd
players[i].da_team = "blue";
}
}