/** * Use this file to configure map lists. * * Each section is a map list that plugins can use. For example, the Admin Menu * requests an "admin menu" map list, and you can control which maps appear via * this file. * * Each section must have a property that explains where to read the maps from. * There are two properties: * * target - Redirect the request to another section. * file - Read a file of map names, in mapcycle.txt format. * * There is one section by default, called "mapcyclefile" - it is mapped to the * mapcycle.txt file, or whatever the contents of your mapcyclefile cvar is. * * If a plugin requests a map list file which doesn't exist, or is empty, SourceMod * tries the "default" section, and then the "mapcyclefile" section. */ "MapLists" { /** * Default requests go right to the mapcyclefile. */ "default" { "target" "mapcyclefile" } /* Admin menu, map menu */ "sm_map menu" { "file" "adminmaplist.ini" } /* Admin menu, map voting menu */ "sm_votemap menu" { "file" "adminmaplist.ini" } /* For the "randomcycle" plugin */ "randomcycle" { "target" "default" } /* For the "mapchooser" plugin */ "mapchooser" { "target" "votemaplist.txt" } /* For the "nominations" plugin */ "nominations" { "target" "votemaplist.txt" } }