How to make countdown time?
#7

pawn Код:
new mins;
new secs;

new CTTimer;//On Top Of Your Script



forward CT(playerid);
public CT(playerid)
{
    if(mins + secs > -1)
    {
        if(secs > -1)
        {
            new str[10];
            format(str,10,"%i:%i",mins,secs);
            GameTextForPlayer(playerid,str,500,6);
            secs = secs - 1;
        }
        else
        {
            mins = mins - 1;
            secs = 59;
            new str[10];
            format(str,10,"%i:%i",mins,secs);
            GameTextForPlayer(playerid,str,500,6);
            secs = secs - 1;
        }
    }
    else
    {
        GameTextForPlayer(playerid,"GO !",500,6);
        KillTimer(CTTimer);
    }
    return 1;
}


    //put this where you want to start the timer
    mins = 0;//change it with the value of minutes
    secs = 3;//change it with the value of seconds
    CTTimer = SetTimerEx("CT",1000,1,"iii",playerid);
Reply


Messages In This Thread
How to make countdown time? - by nuriel8833 - 24.11.2013, 08:33
Re: How to make countdown time? - by DobbysGamertag - 24.11.2013, 08:38
Re: How to make countdown time? - by nuriel8833 - 24.11.2013, 08:49
Re: How to make countdown time? - by erminpr0 - 24.11.2013, 09:21
Re: How to make countdown time? - by ReD_HunTeR - 24.11.2013, 09:21
Re: How to make countdown time? - by Zues - 24.11.2013, 09:36
Re: How to make countdown time? - by Opah - 24.11.2013, 10:01
Re: How to make countdown time? - by nuriel8833 - 24.11.2013, 13:18

Forum Jump:


Users browsing this thread: 1 Guest(s)