Advertisement
DraKiNs

[COD] Unidade de Tempo

Jun 26th, 2011
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.21 KB | None | 0 0
  1. ReturnStringTime(val)
  2. {
  3.     static string[30];
  4.     return (string = (60000 > val >= 1000) ? ("Seconds") : (60000 * 60 > val >= 60000) ? ("Minutes") : (1000 > val >= 0) ? ("Miliseconds") : ("Days"), string);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement