Прописываешь её в maplist.txt.
Теперь если хочешь что бы участвовала в цикле, то добавляешь в mapcycle.txt, в этом случае она стандартна будет участвовать в голосовании.
Если хочешь добавить только в голосование, то тогда создаёшь файл и прописываешь туда, допустим - maps.ini , путь - addons/sourcemod/configs
Далее редактируешь файл maplists.cfg путь - addons/sourcemod/configs
Code
"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"
{
"file" "addons/sourcemod/configs/maps.ini"
}
/* For the "nominations" plugin */
"nominations"
{
"file" "maplist.txt"
}
/* For playersvotes plugin */
"playersvotes"
{
"file" "maplist.txt"
}
}