08.07.2016, 17:53
Quote:
here u go a function:
PHP код:
|
PHP код:
ConvertTime(seconds)
{
new string[10];
format(string, sizeof string, "%02i:%02i", (seconds / 60) % 60, seconds % 60);
return string;
}
here u go a function:
PHP код:
|
ConvertTime(seconds)
{
new string[10];
format(string, sizeof string, "%02i:%02i", (seconds / 60) % 60, seconds % 60);
return string;
}