05.03.2011, 13:33
hi,
just a tiny question:
im counting the played rounds on my server like this:
But im confused.
Would this only increase this value of every player on the server (+1)
or would it increase this value of every player with the amount of the currently connected players? (+CurrentlyConnectedPlayerAmount)
regards.
just a tiny question:
im counting the played rounds on my server like this:
pawn Код:
//defining
new RoundsPlayedCouter[MAX_PLAYERS];
//at the end of the round
for(new i = 0; i < MAX_PLAYERS; i++)
{
RoundsPlayedCouter[i]++;
}
Would this only increase this value of every player on the server (+1)
or would it increase this value of every player with the amount of the currently connected players? (+CurrentlyConnectedPlayerAmount)
regards.