15.07.2010, 01:23
(
Последний раз редактировалось [HiC]TheKiller; 15.07.2010 в 01:23.
Причина: Forgot the pawn tags.
)
pawn Код:
new count;
for(new i; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
if(PlayerInfo[i][profession] == COP) count ++;
}
printf("%d", count); //Will return the # of cops.