Sie sind nicht angemeldet.

Nitro

Stammgast

  • »Nitro« ist der Autor dieses Themas

Beiträge: 58

Wohnort: Bayern

Beruf: Zerspanungsmechaniker

Rootserver vorhanden: Ja

  • Nachricht senden

1

Sonntag, 6. Juli 2014, 02:34

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

Quellcode

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"
	}
}



Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »General« (6. Juli 2014, 12:54)


Nitro

Stammgast

  • »Nitro« ist der Autor dieses Themas

Beiträge: 58

Wohnort: Bayern

Beruf: Zerspanungsmechaniker

Rootserver vorhanden: Ja

  • Nachricht senden

2

Dienstag, 8. Juli 2014, 13:47

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

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

3

Dienstag, 8. Juli 2014, 14:05

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

uniQue

Fortgeschrittener

Beiträge: 409

Beruf: Kaufman im Einzelhandel

Rootserver vorhanden: Ja

  • Nachricht senden

4

Dienstag, 8. Juli 2014, 17:32

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

MfG
uniQue

Nitro

Stammgast

  • »Nitro« ist der Autor dieses Themas

Beiträge: 58

Wohnort: Bayern

Beruf: Zerspanungsmechaniker

Rootserver vorhanden: Ja

  • Nachricht senden

5

Mittwoch, 9. Juli 2014, 01:05

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

Fortgeschrittener

Beiträge: 409

Beruf: Kaufman im Einzelhandel

Rootserver vorhanden: Ja

  • Nachricht senden

6

Mittwoch, 9. Juli 2014, 01:45

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« ist der Autor dieses Themas

Beiträge: 58

Wohnort: Bayern

Beruf: Zerspanungsmechaniker

Rootserver vorhanden: Ja

  • Nachricht senden

7

Donnerstag, 10. Juli 2014, 00:43

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

Quellcode

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"
	}
}

Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »Nitro« (10. Juli 2014, 03:05)


8

Donnerstag, 10. Juli 2014, 01:43

Damit geht es (bei mir)..

Spoiler Spoiler

Quellcode

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

Quellcode

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"
	}

Ähnliche Themen