Get the last standing player in the game
#1

I'm trying to find a way to do it, here's is what I have:

Код:
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.
	}
but this code can't get the player's name! What can I do?
Reply


Messages In This Thread
Get the last standing player in the game - by Koppa, - 16.12.2010, 23:42
Re: Get the last standing player in the game - by XePloiT - 17.12.2010, 00:02

Forum Jump:


Users browsing this thread: 3 Guest(s)