Convert seconds to hours, minutes, seconds
#4

you can use this

pawn Код:
stock Sec2HMS(secs, &hours, &minutes, &seconds)
{
  if (secs < 0) return false;
  minutes = secs / 60;
  seconds = secs % 60;
  hours = minutes / 60;
  minutes = minutes % 60;
  return 1;
}


new H,M,S,string[50];
new sec = /*Your total seconds here*/
Sec2HMS(sec,H,M,S);
format(string,sizeof(string),"%d:%d:%d",H,M,S);
Reply


Messages In This Thread
Convert seconds to hours, minutes, seconds - by kurta999 - 25.11.2014, 22:03
Re: Convert seconds to hours, minutes, seconds - by AnthonyTimmers - 25.11.2014, 22:31
Re: Convert seconds to hours, minutes, seconds - by Banana_Ghost - 26.11.2014, 03:29
Re: Convert seconds to hours, minutes, seconds - by M4D - 26.11.2014, 04:43

Forum Jump:


Users browsing this thread: 2 Guest(s)