22.04.2014, 16:37
Quote:
I wonder how i can add days played in stats?
Every 24 minutes will be one day in game, how i do |
PHP код:
new days_played[MAX_PLAYERS];
PHP код:
public IAmCalledEachHour() {
for (new i=0; i<MAX_PLAYERS; i++)
if (IsPlayerConnected(i))
days_played[i]++;
}
3. Set the timer, that will call this function each 24 minutes, for example in OnGameModeInit:
PHP код:
public OnGameModeInit(){
...
SetTimer("IAmCalledEachHour", 24 * 60 * 1000, true);
...
}