Annoying Vote menu issue

Post Reply
Wrangler
A regular
A regular
Posts: 56
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Thu Dec 12, 2013 10:16 pm

Annoying Vote menu issue

Post by Wrangler »

I added several maps to the mg_hostage group in my gamermodes_server.txt painstakingly following every detail. Unfortunately only 4 maps, stock maps, come up when the match ends and its time to vote for a new map. Is there somewhere other than gamemodes_server.txt that needs to have the mapgroup updated? Can someone please help me get to the bottom of this, its very annoying.
$atanic $pirit
This is my homepage
This is my homepage
Posts: 251
Joined: Tue Jan 28, 2014 5:32 am

Re: Annoying Vote menu issue

Post by $atanic $pirit »

Are you using Sourcemod?
Image
Wrangler
A regular
A regular
Posts: 56
Joined: Thu Dec 12, 2013 10:16 pm

Re: Annoying Vote menu issue

Post by Wrangler »

Yes. I'm not running any plug-in except the advertisements.
$atanic $pirit
This is my homepage
This is my homepage
Posts: 251
Joined: Tue Jan 28, 2014 5:32 am

Re: Annoying Vote menu issue

Post by $atanic $pirit »

You know cs_go. Issue can be anything, so I would suggest you post your gamemodes_server.txt here to take a look.

Also add the map names in mapcycle.txt as well. I know it's not being used but cs_go is confusing to manage as you already know, so give it a shot as well.
Image
Wrangler
A regular
A regular
Posts: 56
Joined: Thu Dec 12, 2013 10:16 pm

Re: Annoying Vote menu issue

Post by Wrangler »

My Gamemodes_server.txt file. The Wrangler area has never been used and I'm not done tinkering with it. Please let me know if i messed anything up.

// Values here override the default gamemodes.txt

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

"mapgroupsMP" // List of mapgroups valid for this game mode
{
"mg_custom" ""
}

}
}
}
}

//////////////////////////////////////////////////////////////////////////////////////////////
// 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 adjust the startup mapgroup in your autoexec.cfg file.
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/...icated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////

"mapgroups"
{

"mg_armsrace"
{
"imagename" "mapgroup-armsrace"
"nameID" "#SFUI_Mapgroup_armsrace"
"name" "mg_armsrace"
"maps"
{
"glass_war_2" ""
"ar_traininggroungs_v2" ""
"ar_monastery" ""
"aim_headshot_2k14" ""
"ar_shoots" ""
"de_killhouse_csgo_v4" ""
"ar_warehouse" ""
"aim_storage_container" ""
"ar_baggage" ""
"ar_waterland" ""
}
}

"mg_demolition"
{
"imagename" "mapgroup-demolition"
"nameID" "#SFUI_Mapgroup_demolition"
"name" "mg_demolition"
"maps"
{
"de_lake" ""
"de_stmarc" ""
"de_westwood" ""
"de_sugarcane" ""
"de_toscan" ""
"de_bank" ""
"de_prodigy" ""
"de_safehouse" ""
"de_coldwater" ""
"de_shorttrain" ""
"de_airstrip" ""
}
}


"mg_hostage"
{
"imagename""mapgroup-hostage"
"nameID" #SFUI_Mapgroup_hostage"
"name" "mg_hostage"
"maps"
{
"cs_estate" ""
"cs_militia" ""
"cs_assault" ""
"cs_agency" ""
"cs_crackhouse_remake" ""
"cs_rush" ""
"cs_office" ""
"bunker_classic" ""
"cs_thunder" ""
"cs_italy" ""
"cs_valley" ""
}
}


//{
"mg_wranglers_picks" // mapgroup definition
{
"name" "mg_wranglers_picks"
"maps"
{
"de_dust_se" ""
"de_dust2_se" ""
"de_nuke_se" ""
"de_train_se" ""
"de_inferno_se" ""
"de_aztec_se" ""
}
}
}
}
$atanic $pirit
This is my homepage
This is my homepage
Posts: 251
Joined: Tue Jan 28, 2014 5:32 am

Re: Annoying Vote menu issue

Post by $atanic $pirit »

Your problem is right there.

Lets me explain.

Code: Select all

"mapgroupsMP" // List of mapgroups valid for this game mode
{
"mg_custom" ""
}
You have listed that mg_custom map group is the only valid map group for Classic game mode.

Now take a look at all of your map groups.

Code: Select all

mg_armsrace
mg_demolition
mg_hostage
mg_wranglers_picks
I don't see mg_custom map group anywhere. In this case your server reverts back to mg_bomb map group, if I'm not wrong. So, you either need to change the valid map group for the specific game mode that you wanna play or create a new map group called mg_custom and add your maps to it.

I hope that solves the issue for you. Please reply back, if your problem is resolved.
Image
Wrangler
A regular
A regular
Posts: 56
Joined: Thu Dec 12, 2013 10:16 pm

Re: Annoying Vote menu issue

Post by Wrangler »

My server does go to hostage only maps but it only shows 4 of them Italy, militia, office and another I can't remember off the top of my head.

I'll adjust the mg_custom to any existing group, right?

Also, as long as that initial group designation is valid the rest should fall into place as well. Correct?
Wrangler
A regular
A regular
Posts: 56
Joined: Thu Dec 12, 2013 10:16 pm

Re: Annoying Vote menu issue

Post by Wrangler »

Unfortunately changing the mg_custom to mg_hostage (because it exists in that file) did no good. Is there anything else I can try?
Wrangler
A regular
A regular
Posts: 56
Joined: Thu Dec 12, 2013 10:16 pm

Re: Annoying Vote menu issue

Post by Wrangler »

reverted everything back to the original names. Renamed Wranglers_picks back to custom. I rebooted. I'm going to give it a go now. Hopefully that resolves things.
Post Reply