Timer for next round
#1

How to make a timer for the next Round? that means after 300000 Milliseconds , the next round should come but i need the textdraw for the time for example 1:00 , 0.59 ,0.58 , 0.57 and so on.Can anyone please help me to do this
Reply
#2

new Timer = 60;
new Started = 0; // bool if preferable

pawn Код:
public OnGameModeInit()
{
     SetTimer("NextRound", 1000, true);
}
forward NextRound();
public NextRound()
{
     if(!Started) return 0;
     if(Timer < 0)
     {
          Timer = 60;
          // Round Ended.
     }
     else
     {
           Timer--;
            // Update textdraw here. Use the Timer variable.
     }
}
Reply
#3

yes but i need the textdraw and i dont know how to make that
Reply
#4

lol zamaroth's textdraw editor
Reply
#5

Dude i dont know how to script textdraw of time please help me
Reply
#6

help me plz
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)