Ok How to make lIke this timer?
#1

Hello Guys i want to know how to i can make timer like thiis ?? When this 4mintes Ended The Map Finish and change map
NOTE: Not Real Time or Time For Weather i mean Timer For Map

If Timer 5:00
4:59
4:58
4:57
Like this i mean
Reply
#2

Did u understand what i mean ? Or u want Codes ?
Reply
#3

On Top
pawn Код:
new MapTime = 300;

In one sec timer
pawn Код:
new str[20];
format(str,sizeof(str),"%02d:%02d",((MapTime/60)%60),(MapTime%60));
TextDrawSetString(YourTD, str);
if(--MapTime == 0)
{
    MapTime = 300;
    // Next Map
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)