Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //made by Tubbymuffin224
- //gamemodes_server.txt
- /////////////////////////////
- //RiS custom gamemode
- /////////////////////////////
- //code start!
- "GameModes_Server.txt"
- {
- "gameTypes"
- {
- "classic"
- {
- "gameModes"
- {
- "custom"
- {
- "maxplayers" "20" //maxplayers doesnt go in the convar block. Another way to set maxplayers is to add -maxplayers_override XX to the cmd line.
- "exec"
- "mp_round_restart_delay" "3"
- { // Any config files listed here will be executed after the ones in gamemodes.txt.
- "exec" "gamemode_ris_awp.cfg"
- }
- "mapgroupsMP"
- { // List of mapgroups valid for this game mode ( competitive )
- "mg_active" ""
- }
- }
- "casual"
- {
- "maxplayers" "20" //maxplayers doesnt go in the convar block. Another way to set maxplayers is to add -maxplayers_override XX to the cmd line.
- "exec"
- "mp_round_restart_delay" "3"
- { // Any config files listed here will be executed after the ones in gamemodes.txt.
- "exec" "gamemode_ris_awp.cfg"
- }
- "mapgroupsMP"
- { // List of mapgroups valid for this game mode ( casual )
- "mg_active" ""
- }
- }
- }
- }
- }
- }
- //end code.
- /////////////////////////////
- //RiS custom map group
- /////////////////////////////
- //////////////////////////////////////////////////////////////////////////////////////////////
- // Map groups
- //
- // To use a mapgroup, it needs to be defined in a keyvalues
- // block such as the example below, as well as listed in the
- // 'mapgroupsMP' block within the game mode that will run it,
- // such as the example above.
- //
- // Then launch the server with '+mapgroup MAPGROUPNAME'
- //
- // Example:
- //
- // srcds -game csgo +game_mode 1 +mapgroup mg_bomb_se +map de_nuke_se
- //
- //
- // Check the developer wiki for updated community info
- // https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers
- //////////////////////////////////////////////////////////////////////////////////////////////
- //code start!
- "mapgroups"
- {
- "mg_active" //name of the map group
- {
- "grouptype" "active"
- "name" "mg_active"
- "maps"
- {
- "awp_infamous" ""
- "awp_arena_vlgbeta2" ""
- "awp_boostex2" ""
- "awp_buildings_fix" ""
- "awp_closequarters_v2" ""
- "awp_fort_fix" ""
- "awp_gamma_ris_test_11" ""
- "awp_infinite_v2" ""
- "awp_lego_2011" ""
- "awp_lego_3" ""
- "awp_lego_asia" ""
- "awp_lego_fort" ""
- "awp_manor" ""
- "awp_minecraft" ""
- "awp_nitros" ""
- "awp_slaughter" ""
- "awp_taj_heaven" ""
- "awp_thequad" ""
- "awp_veneza" ""
- }
- }
- }}
- //end code.
Advertisement
Add Comment
Please, Sign In to add comment