03.03.2012, 12:19
Why not use this?
pawn Код:
stock ReturnCountPlayers()
{
new count = 0;
foreach(Player, i)
{
if(UserInfo[i][Spawned] == 1)
{
count ++;
}
}
return count;
}