02.09.2009, 02:24
hey i want to noe if you can count the players on your team? im using gTeam
new TeamCount = 0;
for(new i; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(gTeam[i] == TEAM_NAME)
{
TeamCount++;
}
}
}