28.11.2011, 20:51
lol, do it using a variable, set the timer to 1 sec to count the played time and use this function:
pawn Код:
stock GetPlayerOnlineTime(playerid, &hours, &minutes, &seconds)
{
hours = (your var / (60 * 60)) % 24;
minutes = (your var / 60) % 60;
seconds = your var % 60;
}
//made by iPLEOMAX