You are not logged in.

  • "saubermachfrau" started this thread

Posts: 1

wcf.user.option.userOption53: Nein

  • Send private message

1

Monday, August 27th 2012, 5:28pm

Dedicated CS GO Server und Custommaps

Hallo, ich bekomme einfach den Server nicht zum laufen. Wenn ich connecten will, kommt das typische, ich kann mich nicht verbinden.

Die Map steht in der mapcycle.txt und maplist.txt.

Meine gamemodes_server.txt sieht folgendermaßen aus...

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// To use this file, rename it to GameModes_Server.txt
//
// Values here override the default gamemodes.txt 

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

					"maxplayers"		"8"				// 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.

					"convars"
					{
						"hostname"								"SE SERVER 24/7"
						"mp_startmoney"							"888"
						"mp_maxmoney"							"9999"

					}

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

				"casual"
				{

					"maxplayers"		"25"

					"convars"
					{
						"hostname"								"[GER] Deutsche BIERSTUBE"
						"mp_startmoney"							"15000"
						"mp_maxmoney"							"99999"

					}

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

			}	
		}
	}

//////////////////////////////////////////////////////////////////////////////////////////////
// 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.
2//
// Then launch the server with '+mapgroup MAPGROUPNAME'
//
// Example:
//
// srcds -game csgo +game_mode 1 +mapgroup mg_bomb_se +map de_nuke_se
//
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/wiki/Counter-Strike:_Global_Offensive_Dedicated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////


	"mapgroups"
	{
		"casualMaps"									// mapgroup definition
		{
			"name"			"casualMaps"
			"maps"
			{
			"De_Vigil"		""
			}
		}
	}
}


Ich verstehe es nicht warum er nicht läuft, der Servername wird ausgelesen.

Kann mir jemand helfen.....Danke

Jackmaster

Super Moderator

Posts: 660

wcf.user.option.userOption53: Ja

  • Send private message

2

Monday, August 27th 2012, 6:15pm

De_Vigil heißt die map den so?
Also wegen Großschreibung

jon1991

Beginner

Posts: 48

wcf.user.option.userOption53: Nein

  • Send private message

3

Monday, August 27th 2012, 6:33pm

Quoted


//////////////////////////////////////////////////////////////////////////////////////////////
// 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.
2//
// Then launch the server with '+mapgroup MAPGROUPNAME'
//
// Example:
//
// srcds -game csgo +game_mode 1 +mapgroup mg_bomb_se +map de_nuke_se
//
//
// Check the developer wiki for updated community info
// https://developer.valvesoftware.com/wiki…dicated_Servers
//////////////////////////////////////////////////////////////////////////////////////////////






Wenns an der Groß/kleinschreibung nicht liegt dann mach mal die Rot markierte "2" weg :) Meine "Schul" C++ Kentnisse sagen mir das macht keinen Sinn das da ne 2 steht. Bei mir war das auch so hab Sie einfach vornerein weggemacht also kA obs daran auch liegt denk aber schon ;)



Mal noch ne andere Frage... Hab bei mir die maps nicht in die maplist.txt und mapcycle.txt eingetragen und es funtzt trotzdem. gut was mapcyle ist kann ich mir denken.. Muss ich die noch irgendwo anders reinmachen oder war das dann alles mit: maplist.txt, mapcyyle.txt und gamemodes_server.txt ?

Jackmaster

Super Moderator

Posts: 660

wcf.user.option.userOption53: Ja

  • Send private message

4

Monday, August 27th 2012, 6:42pm

Lol warum ist da ne 2 :D

haeufi

Trainee

Posts: 159

Occupation: Student

wcf.user.option.userOption53: Ja

  • Send private message

5

Monday, August 27th 2012, 7:16pm

Ich würde sagen, dass du sowohl in der mapgroup als auch im mapnamen die Großbuchstaben weglassen solltest, da das Spiel ja scheinbar schon mit dem Verzeichnis, in dem es läuft, Probleme hat, wenn da irgendwo ein Pfad mit Großbuchstaben vorliegt.

Mal noch ne andere Frage... Hab bei mir die maps nicht in die maplist.txt und mapcycle.txt eingetragen und es funtzt trotzdem. gut was mapcyle ist kann ich mir denken.. Muss ich die noch irgendwo anders reinmachen oder war das dann alles mit: maplist.txt, mapcyyle.txt und gamemodes_server.txt ?
Wie ich das mitbekommen habe, braucht lediglich SourceMod die maplist.txt, um die Maps für den vote auszulesen. Wenn du kein SM einsetzt, sollte das kein Problem machen, wenn es in der maplist.txt nicht drin ist. Oder liege ich da falsch?
Team Niederbayern - Seit 2005 DEINE CSS-Community, egal ob Default Maps oder Turbo Gungame Deathmatch mit NoBlockoder dust2only , da ist für jeden was dabei. Besucht uns auf Server und Homepage!
Jetzt NEU
: CS:GO - Classic Competitive (176.9.107.110:27080), de_dust2 only (176.9.107.110:27085) und de_dust2_se Deathmatch (176.9.107.110:27090)

DeaD_EyE

Administrator

Posts: 3,980

Location: Hagen

Occupation: Mechatroniker (didaktische Systeme)

wcf.user.option.userOption53: Nein

  • Send private message

6

Monday, August 27th 2012, 7:53pm

Ja, liegst richtig. Die maplist.txt haben ausschließlich Plugins wie Mani und SourceMod verwendet.

jon1991

Beginner

Posts: 48

wcf.user.option.userOption53: Nein

  • Send private message

7

Monday, August 27th 2012, 8:22pm

Lol warum ist da ne 2 :D

fail von steam denk ich war bei mir und wird bei vielen anderen auch so sein^^

ok source mod hab ich zurzeit drauf, ich werds einfach adden und fertig :thumbup:

danke euch

Similar threads