// Kus' CS:GO Private Competitive Game with death cam and HLTV demo config // Copy to C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg // To record HLTV demo 'tv_record name' and it will be saved to C:\Program Files (x86)\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\name.dem // Which you can watch by opening console anywhere in CS:GO and type 'playdemo name' and hit enter echo "How to host a CS:GO Private Competitive Game:" echo " - Make a private casual lobby and invite everyone echo " - BEFORE you start the game open console and run 'exec comp' to enable HLTV for death cam and recording the game" echo " - When everyone is in the lobby start it" echo " - Wait until everyone has joined the game" echo " - If you want to change level 'changelevel de_dust2'" echo " - Open console and run 'exec comp' to set the competitive game settings" // Change game mode to Competitive game_type 0 game_mode 1 tv_enable 1 // Execute competitive config settings exec gamemode_competitive // Kick bots bot_kick // Restrict dead players to team mp_forcecamera 1 // Enable kill cam spec_replay_enable 1 spec_replay_bot 1 // Disable auto team balance mp_autoteambalance 0 mp_limitteams 10 // Restart game to activate new settings mp_restartgame 1 // Force start warmup (if you are restarting match) mp_warmup_start echo "Kus' Competitive config loaded! Use 'mp_warmup_end' to end warmup. 'tv_record name' to record HLTV demo"