21.04.2014, 17:17
I wonder how i can add days played in stats?
Every 24 minutes will be one day in game, how i do
Every 24 minutes will be one day in game, how i do
daysplayed
PlayerInfo[playerid][daysplayed] ++;
I wonder how i can add days played in stats?
Every 24 minutes will be one day in game, how i do |
new days_played[MAX_PLAYERS];
public IAmCalledEachHour() {
for (new i=0; i<MAX_PLAYERS; i++)
if (IsPlayerConnected(i))
days_played[i]++;
}
public OnGameModeInit(){
...
SetTimer("IAmCalledEachHour", 24 * 60 * 1000, true);
...
}