16.12.2010, 23:42
I'm trying to find a way to do it, here's is what I have:
but this code can't get the player's name! What can I do?
Код:
new player_count = 0;
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(!GetPlayerState(i) == PLAYER_STATE_SPECTATING)
{
player_count++;
}
}
if(player_count == 0)
{
///--we have a NO winner, everyone is died
}
else if(player_count == 1)
{
///--we have a single winner
}
else if(player_count > 1)
{
///--there's more than one player alive, continue the game.
}

