You are not logged in.

Nitro

Stammgast

  • "Nitro" started this thread

Posts: 58

Location: Bayern

Occupation: Zerspanungsmechaniker

wcf.user.option.userOption53: Ja

  • Send private message

1

Sunday, July 6th 2014, 2:34am

Maplists verbugt seit Sourcemod 1.6 Update

Ich hab soeben die Server auf den offiziellen release Sourcemod1.6 geupdated und festgestellt das die maplists im Adminmenu verbugt ist.
Unten findet ihr die verwendete maplists.txt, vor dem Update hat das ganze so funktioniert dannach fand ich dann nurnoch die Standart Maps im Admin Menu. Jetzt habe ich bei sm_votemap menu und sm_map menu auch default gesetzt nun habe ich zwar meine Maps aus der maplist wieder im Menu aber immernoch alle Standart Maps (siehe Screenshot). Das lustige ist bei den mapvotes bzw nominate sind die Standart Maps nicht vorhanden. Bei CSGO passt nach wie vor alles mit der unten stehenden maplists.txt.

Ist das ein bekannter Bug oder hat jemand eine Lösung?

Spoiler Spoiler

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
/**
 * 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"		"maplist.txt"
	}
	
	/* Admin menu, map menu */
	"sm_map menu"
	{
		"file"			"maplist.txt"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"maplist.txt"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"default"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"default"
	}
}



This post has been edited 2 times, last edit by "General" (Jul 6th 2014, 12:54pm)


Nitro

Stammgast

  • "Nitro" started this thread

Posts: 58

Location: Bayern

Occupation: Zerspanungsmechaniker

wcf.user.option.userOption53: Ja

  • Send private message

2

Tuesday, July 8th 2014, 1:47pm

Hat denn noch keiner seinen CS:S Server auf Sourcemod 1.6.0 geupdated? Kann jemand mein Problem bestätigen? Ich hab schon alles mögliche probiert auch schon mit einem komplett neu aufgesetzen Server.


General

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

3

Tuesday, July 8th 2014, 2:05pm

hab auch auf 1.6 geupdated, das Problem aber hab ich nicht

uniQue

Intermediate

Posts: 409

Occupation: Kaufman im Einzelhandel

wcf.user.option.userOption53: Ja

  • Send private message

4

Tuesday, July 8th 2014, 5:32pm

Habe es auch auf SM 1.6 geupdated und habe überhaupt keine Fehler :)

MfG
uniQue

Nitro

Stammgast

  • "Nitro" started this thread

Posts: 58

Location: Bayern

Occupation: Zerspanungsmechaniker

wcf.user.option.userOption53: Ja

  • Send private message

5

Wednesday, July 9th 2014, 1:05am

Ich hab schon alles probiert aber das Problem bleibt bei CS:S bestehen, bei CS:GO ging es sowieso. Welche configs greifen denn darauf zu eigenltich nur die maplist selbst und die maplists.cfg?
Das einzige was mir einfällt habt ihr in cstrike/maps die Standart Maps drin? Meine "custom" maps sind in cstrike/custom/customer/maps

Ich habe auch noch andere Leute gefragt bei denen das Problem auch besteht.


uniQue

Intermediate

Posts: 409

Occupation: Kaufman im Einzelhandel

wcf.user.option.userOption53: Ja

  • Send private message

6

Wednesday, July 9th 2014, 1:45am

Du musst im addons/sourcemod/configs eine adminmenu_maplist.ini erstellen. Dort schreibst du deine Maplist hin. Wenn ich mich nicht täusche, dann müsste dein bug im Admin Menu weg sein.

MfG
uniQue

Nitro

Stammgast

  • "Nitro" started this thread

Posts: 58

Location: Bayern

Occupation: Zerspanungsmechaniker

wcf.user.option.userOption53: Ja

  • Send private message

7

Thursday, July 10th 2014, 12:43am

Erstmal Danke für den Tipp, ich hab mir aufgrund dessen mal die aktuelle "maplists.cfg" angeguckt ja ja mitlweile komplett anders aussieht.

UPDATE:

Dank Bara haben wir eine Lösung gefunden. Mit der unten stehenden Datei funktioniert es wieder wie vorher mit befüllter maplist.txt und mapcyle.txt.

Spoiler Spoiler

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
/**
 * 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"
	{
		"target"			"default"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"target"			"default"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"default"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"default"
	}
}

This post has been edited 2 times, last edit by "Nitro" (Jul 10th 2014, 3:05am)


Bara

Professional

Posts: 834

wcf.user.option.userOption53: Ja

  • Send private message

8

Thursday, July 10th 2014, 1:43am

Damit geht es (bei mir)..

Spoiler Spoiler

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
/**
 * 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"
{
	/**
	 * Use the default mapcycle file
	 */
	"default"
	{
		"file"		"cfg/mapcycle_default.txt"
	}
	
	/* Admin menu, map menu */
	"sm_map menu"
	{
		"target"		"default"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"target"		"default"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"default"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"default"
	}
}

Hab default Eintrag geändert von target mapcyclefile zu file cfg/mapcycle_default.txt, da mapcyclefile Standard mapcycle.txt ausgibt was aber seit Monaten nicht mehr gibt ( bei einer neuen Server Installation ).
Und den Rest auf target default abgeändert, damit alle Ausgaben gleich sind und nicht erst der gesamte maps Ordner ausgelesen wird
Warum SourceMod noch eine Datei drin hat die es gar nicht gibt ist merkwürdig...

Spoiler Spoiler

Source code

1
2
3
4
5
6
7
8
9
10
11
	/* 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"
	}