Masjugadores(12);
Masjugadores( numero )
{
quit = false;
while( !quit )
{
wait 0.5;
contador = 0;
jugadores = getAllPlayers();
for( i = 0; i < jugadores.size; i++ )
{
if( jugadores[i] isPlaying() )
contador++;
}
if( contador >= numero )
break;
}
}