Advertisement
Johurt

[FNC] SecondsToMins

Jan 16th, 2016
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.19 KB | None | 0 0
  1. stock SecondsToMins(secs, rSTR[], size = sizeof(rSTR)) // johurt
  2. {
  3.     new mins;
  4.     while(secs > 59)
  5.     {
  6.         secs -= 60;
  7.         mins++;
  8.     }
  9.     format(rSTR, size, "%d:%02d", mins, secs);
  10.     return 1;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement