How to make a countdown
#1

I want to make a 1minute countdown that shows somewhere on the screen.
Reply
#2

https://sampwiki.blast.hk/wiki/SetTimerEx
Reply
#3

pawn Код:
CMD:countdown(playerid, params[])
{
    if(PlayerInfo[playerid][pAdmin] >= 3)
    {
        SetTimer("Three", 1000, 0);
        SetTimer("Two", 2000, 0);
        SetTimer("One", 3000, 0);
        SetTimer("GoGoGo", 4000, 0);
    }
    return 1;
}
You can edit it to your way
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)