28.10.2011, 22:54
Start a one hour timer when the game mode beings.
Each time the timer is called (ever hour from the time the game-mode began), loop through all players (would recommend using foreach by ****** for this).
For each player, update their score like this:
That will get their score, then set their score to what it was plus one.
Good luck!
Each time the timer is called (ever hour from the time the game-mode began), loop through all players (would recommend using foreach by ****** for this).
For each player, update their score like this:
pawn Код:
SetPlayerScore(i, GetPlayerScore(i)+1);
Good luck!