[Math]AFK In Minutes
#1

Hey hey,

I got one simple problem, I can't convert the time from milliseconds to minutes...

PHP код:
public OnPlayerResume(playeridtime)
{
    new 
string[180], pname[MAX_PLAYER_NAME];
    
GetPlayerName(playeridpnamesizeof(pname));
    
format(stringsizeof(string), "%s is back from AFK, he was AFK for %d miliseconds."pnametime);
    
SendClientMessageToAll(COLOR_MESstring);

Anyone?
Reply
#2

1 minute = 60 seconds
1 second = 1000 ms
then 1 minute = 60000 ms

So time/60000 gives you time in minutes
Reply
#3

Код:
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 /= 60000); 
    SendClientMessageToAll(COLOR_MES, string); 
}
I think this works, im not completely sure tho.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)