hi I got this
this show me time in seconds can I make it to be in mins and secs like 2:02
can anyone help?
PHP Code:
if (jailedtime[i] != 0)
{
new str[256];
format(str, sizeof(str), "~n~~n~~n~~n~~w~-Unjailed in: %d secs", jailedtime[i]);
GameTextForPlayer(i, str, 1000, 3);
jailedtime[i] --;
if (jailedtime[i] == 0){
GetPlayerName(i, string1, MAX_PLAYER_NAME);
dini_Unset(AddDirFile(dir_userfiles, string1), "jailtime");
dini_Unset(AddDirFile(dir_userfiles, string1), "jailloc");
SetPlayerInterior(i, 0);
SetPlayerVirtualWorld2(i, 0);
SetPlayerPos(i, wspawns[dspawn[i]][0], wspawns[dspawn[i]][1], wspawns[dspawn[i]][2] + 1.0);
SetPlayerFacingAngle(i, wspawns[dspawn[i]][3]);
SetCameraBehindPlayer(i);
TogglePlayerControllable(i, 1);
new string2[128];
format(string2, 128, "%s has been unjailed after serving their time inside.", string1);
SendClientMessageToAll2(COLOR_WHITE, string2);
}
}
can anyone help?