23.08.2009, 02:41
Simply use a loop to go through all of your players and spawn them using SpawnPlayer(); like so:
However I recommend using foreach instead of a loop, this is only an example
pawn Код:
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
SpawnPlayer(i);
}
}
GameTextForAll("Round has ended..",5000,3);
