View Single Post
devilshanto
Junior Member
Join Date: Dec 2017
Old 12-07-2017 , 07:28   Re: Map data Auto changing in MY Dedicated CS Go server
Reply With Quote #4

Quote:
Originally Posted by Maxximou5 View Post
You're running maps outside your specified mapgroup, check your gamemode_server.txt and verify the maps are in that group.
Read this: https://developer.valvesoftware.com/...des_server.txt
But i was able to play the map first, then when am choosing previous map and trying to comeback in previous Inferno map its saying


My gamemodes_server file
Code:
//  gamemodes.txt 

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

					"maxplayers"		"30"				// Note that maxplayers doesn't go in the convar block.
														// Another way to set maxplayers is to add -maxplayers_override XX to the cmd line.

					"exec"
					{
						"exec"					"gamemode_competetive_server.cfg"
					}

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

				"casual"
				{

					"maxplayers"		"30"

					"exec"
					{
						"exec"					"gamemode_casual_server.cfg"
					}

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

			}	
		}
	}

//////////////////////////////////////////////////////////////////////////////////////////////
// (Map groups)
// https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////


	"mapgroups"
	{
		"mg_bomb"									// mapgroup definition
		{
			"name"			"mg_bomb"
			"maps"
			{
				"de_mirage"		""
				"de_dust2"		""
				"de_train"		""
				"de_inferno"		""
				"de_overpass"		""
				"de_cbble"		""
				"de_cache"		""
				"de_nuke"		""
			}
		}
	}
}
In my Mapcycle & maplist i putted there de_mirage
de_dust2
de_train
de_inferno
de_overpass
de_cbble
de_cache
de_nuke

Can you please help me.
devilshanto is offline