Get Team Count?
#4

Try using these:

pawn Код:
stock GetPlayersCountInTeamHome()
{
    new count;
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(GetPlayerTeam(i) == TEAM_HOME)
            {
                count++;
            }
        }
    }
    return count;
}

stock GetPlayersCountInTeamAway()
{
    new count;
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(GetPlayerTeam(i) == TEAM_AWAY)
            {
                count++;
            }
        }
    }
    return count;
}
These are not tested but they should work.
Reply


Messages In This Thread
Get Team Count? - by (_AcE_) - 03.04.2013, 01:14
Re: Get Team Count? - by LarzI - 03.04.2013, 01:20
Re: Get Team Count? - by (_AcE_) - 03.04.2013, 01:30
Re: Get Team Count? - by JJB562 - 03.04.2013, 01:59
Re: Get Team Count? - by kamzaf - 03.04.2013, 02:09

Forum Jump:


Users browsing this thread: 1 Guest(s)