11.01.2016, 10:53
Hey hey,
I got one simple problem, I can't convert the time from milliseconds to minutes...
Anyone?
I got one simple problem, I can't convert the time from milliseconds to minutes...
PHP код:
public OnPlayerResume(playerid, time)
{
new string[180], pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
format(string, sizeof(string), "%s is back from AFK, he was AFK for %d miliseconds.", pname, time);
SendClientMessageToAll(COLOR_MES, string);
}