20.03.2011, 05:58
"Hello everyone, I am having a problem with a timer. I need a timer of 5 minutes in text draw, and at the end of the timer I need the next GM to start, I tried to make it, but it isn't working".
//Top Of Script forward NextRound(); public OnGamemodeInit() { SetTimer("NextRound",300000,false); return 1; } public NextRound() { SendRconCommand("gmx"); //OR YOU CAN DO OnGameModeExit(); return 1; }
"Hello everyone, I am having a problem with a timer. I need a timer of 5 minutes in text draw, and at the end of the timer I need the next GM to start, I tried to make it, but it isn't working".
|