View Single Post
Turbo Diesel
Junior Member
Join Date: Mar 2012
Location: Ohio
Old 09-06-2012 , 17:10   Re: [How To] Add maps for cs:go
Reply With Quote #4

I would much rather add the map to the gamemodes_server.txt myself then use a program... Its a simple edit that can be added with little effort. Once you get the first (big) step done its just a matter of adding another line.

ALSO! You will most likely need to add the map to your current mapgroup anyways because if you don't you will most likely get an error trying to connect to the server when that map is playing. This goes for stock maps as well... I'm guessing it depends on how the server is setup but I had to add all my cs_ maps under the mg_bomb group for them to allow new players to connect when playing a map like cs_office.

I'll post an example of my gamemodes_server.txt so you can see how I've laid mine out...

Code:
"GameModes_Server.txt"
{
    "gameTypes"
    {
        "classic"
        {
            "gameModes"
            {
                "casual"
                {

                    "maxplayers"        "32"

                    "mapgroupsMP"                        // List of mapgroups valid for this game mode ( casual )
                    {
                        "mg_bomb"        ""
                    }
                }

            }    
        }
    }

    "mapgroups"
    {
        "mg_bomb"                                    // mapgroup definition
        {
            "name"            "mg_bomb"
            "maps"
            {
                "cs_italy"    ""
                "cs_office"    ""
            }
        }
    }
}
__________________
Turbo Diesel is offline