// This server will run 2 map cycle, if there are only few player, the deathmatch map cycle will be played, // if there are enough players, the server turn to the mixed map cycle where there are deathmatch, bank robbery // and duel map. // default starting config //bot_nochat 0 // Load map cycles files exec mapcycle_all_dm.cfg exec mapcycle_mix.cfg set auto_mapcycle "vstr mapcycle_all_dm" set g_mapcycles "mapcycle_all_dm mapcycle_mix" // in this config, only "dm" and "mix" are loaded set mapcycle "vstr auto_mapcycle" // select your starting mapcycle // Events exec clear_event.cfg set onEvent_playerDownTo0_do "bot_minplayers 0 ; kickbots ; bot_nochat 1" // save server resources: when no human player are online, bots are removed set onEvent_playerUpTo1_do "bot_minplayers 3 ; bot_nochat 0" set onEvent_playerDownTo1_do "bot_nochat 0" // bot chat when there is only one human player online set onEvent_playerUpTo2_do "bot_nochat 1" set onEvent_playerDownTo3_do "set auto_mapcycle vstr mapcycle_all_dm ; set mapcycle vstr auto_mapcycle" set onEvent_playerUpTo6_do "set auto_mapcycle vstr mapcycle_mix" set nextmap vstr mapcycle vstr nextmap