This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
4,452 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
de_vertigo | ||
de_mirage | ||
de_dust2 | ||
de_ancient | ||
de_inferno | ||
de_train | ||
de_overpass | ||
de_nuke | ||
de_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/** | ||
* 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" "addons/sourcemod/configs/adminmenu_maplist.ini" | ||
} | ||
/* Admin menu, map voting menu */ | ||
"sm_votemap menu" | ||
{ | ||
"file" "addons/sourcemod/configs/adminmenu_maplist.ini" | ||
} | ||
/* For the "randomcycle" plugin */ | ||
"randomcycle" | ||
{ | ||
"target" "default" | ||
} | ||
/* For the "mapchooser" plugin */ | ||
"mapchooser" | ||
{ | ||
"target" "default" | ||
} | ||
/* For the "nominations" plugin */ | ||
"nominations" | ||
{ | ||
"target" "default" | ||
} | ||
"gamemanager" | ||
{ | ||
"file" "addons/sourcemod/configs/game_manager_maps.txt" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.