Quote:
Originally Posted by Dayrion
Hm. You need to do a loop which is counting every players with the same faction. Like this :
PHP код:
new count=0;
for(new i=0; i<MAX_PLAYER; ++)
{
if(PlayerInfo[playerid][Faction] != Factionid) continue;
counter++;
}
|
I should've to put it in each faction, or to double the factionID thingy? give me an example still didn't got how to use it properly.