Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. forward timerdm();
  2. public timerdm(){
  3.             if (ServerInfo[Minutes]==0 && ServerInfo[GameType]==DM){
  4.             else if (ServerInfo[Seconds]>=10) format(TimerSTR,sizeof(TimerSTR),"0%d:%d",ServerInfo[Minutes],ServerInfo[Seconds]),ServerInfo[Seconds]--;
  5.             else if(ServerInfo[Seconds]<=9 && ServerInfo[Seconds]>0) format(TimerSTR,sizeof(TimerSTR),"0%d:0%d",ServerInfo[Minutes],ServerInfo[Seconds]),ServerInfo[Seconds]--;
  6.             EndDm();
  7.         }
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement