Hello There, Guest! Login or Register


Las Venturas Playground 9.6.0
#6
here you go dev team
Code:
stock MsToStr(ms)
{
    new str[20];
    new h = (ms /  (1000 * 60 * 60)),
        m = (ms %  (1000 * 60 * 60)) / (1000 * 60),
        s = ((ms % (1000 * 60 * 60)) % (1000 * 60)) / 1000;

    ms = ms - (h * 60 * 60 * 1000) - (m * 60 * 1000) - (s * 1000);

    if(h > 0) format(str, 20, "%02d:%02d:%02d:%03d", h, m, s, ms);
    else if(m > 0) format(str, 20, "%02d:%02d:%03d", m, s, ms);
    else format(str, 20, "%02d:%03d", s, ms);
    return str;
}
Reply


Messages In This Thread
Las Venturas Playground 9.6.0 - by cake - 07-27-2013, 06:31 PM
Re: Las Venturas Playground 9.6.0 - by LE7ELS - 07-27-2013, 07:01 PM
Re: Las Venturas Playground 9.6.0 - by Fuse - 07-27-2013, 07:07 PM
Re: Las Venturas Playground 9.6.0 - by Nater - 07-29-2013, 03:30 AM
Re: Las Venturas Playground 9.6.0 - by LE7ELS - 07-29-2013, 02:13 PM
Re: Las Venturas Playground 9.6.0 - by Fuse - 07-29-2013, 04:58 PM
Re: Las Venturas Playground 9.6.0 - by Nater - 07-30-2013, 03:52 AM