View Single Post
h3bus
AlliedModders Donor
Join Date: Nov 2013
Old 02-04-2014 , 03:43   Re: [CS:GO] Deathmatch Goes Advanced (v0.3.1, 2014-01-25)
Reply With Quote #26

Quote:
Originally Posted by krispx View Post
hi, how change mp_timelimit per map please ?
Sample config file comes with a sample in "Configs"->"Duration 5mn"
Code:
"Duration 5mn"
{
    "Cvars"
    {
        "mp_roundtime" "5"
        "mp_timelimit" "5"
    }
}
You just need to call it in your map configuration, like it is done in "Maps"->"35hp"
Code:
"35hp"
{
    "LoadRound"
    {
        "Game Modes" "35hp"
        "Configs" "Duration 5mn"
    }
    
    "LoadWarmup"
    {
        "Game Modes" "Warmups No knife"
    }
}
Note that those Cvars works for deathmatch game_mode/game_type. You may need to adjust mp_roundtime_defuse/hostages depending on the game mode (Never really understood why they chose to use different cvar BTW).

Also you can create other duration sections ;)

Last edited by h3bus; 02-04-2014 at 03:43.
h3bus is offline