Du bist nicht angemeldet.

1

Donnerstag, 9. Juni 2011, 23:48

nominate und rtv

Hi,

ich kämpfe hier schon den ganzen Abend daran, rtv und nominate richtig zum laufen zu bekommen.
Die beiden Plugins machen auch ihren Dienst. Lediglich die Mapauswahl stimmt nicht.
Beim rtv erscheinen Maps bei der Auswahl, die nicht in der angegeben Mapliste vorhanden sind.
Ebenso verhält sich nominate. Dort sind alle Maps die auf dem Server liegen anwählbar.

SourceMod Version: 1.3.8-dev
Build ID: 3144:636152af53f4-dev
Metamod:Source version 1.8.7-dev
Build ID: 766:69a4418be837-dev

Meine maplists.cfg sieht wie folgt aus.

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
"MapLists"
{
	/**
	 * Default requests go right to the mapcyclefile.
	 */
	"default"
	{
		"target"		"mapcyclefile"
	}
	
	/* Admin menu, map menu */
	"sm_map menu"
	{
		"file"			"maps.txt"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"maps.txt"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"maps.txt"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"maps.txt"
	}

	/* For the "rockthevote" plugin */
	"rockthevote"
	{
		"file"			"maps.txt"
	}
}

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Mathmos« (10. Juni 2011, 06:53)


Beiträge: 2 498

Wohnort: Schwelm

Beruf: Immobilien-Verwalter / Serveradministrator

Rootserver vorhanden: Nein

  • Private Nachricht senden

2

Donnerstag, 9. Juni 2011, 23:53

Leg für alle Listen "file" fest, dann funzt es auch. Die Listen ansich sollten natürlich im cstrike Ordner liegen.

Desweiteren solltest du 2 Listen für Admins und normale Votes festlegen. Bei uns ist es adminvotemapslist.txt und votemaps.txt

Somit kannst du auch unterscheiden, welche Maps von Spielern zw. vom Server (per mapchooser oder rtv) gevotet werden können - und welche nur in der
Admin Votelist erscheinen.

3

Freitag, 10. Juni 2011, 00:35

Also ich hab das jetzt so:

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
"MapLists"
{
	/**
	 * Default requests go right to the mapcyclefile.
	 */
	"default"
	{
		"target"		"mapcyclefile"
	}
	
	/* Admin menu, map menu */
	"sm_map menu"
	{
		"file"			"mapsfile"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"mapsfile"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"mapsfile"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"mapsfile"
	}

	/* For the "rockthevote" plugin */
	"rockthevote"
	{
		"file"			"mapsfile"
	}
}


Aber leider hat das nichts gebracht =(
Naja, das mit den 2 Liste kann ich ja auch nich später machen. Erstmal muss das funktionieren ;)

4

Freitag, 10. Juni 2011, 06:58

So, jetzt gehts =)
Es war gestern einfach schon zu spät^^
Dank dir TempletonPeck

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
"MapLists"
{
	/**
	 * Default requests go right to the mapcyclefile.
	 */
	"default"
	{
		"target"		"mapcyclefile"
	}
	
	/* Admin menu, map menu */
	"sm_map menu"
	{
		"file"			"maps.txt"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"maps.txt"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"file"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"file"		"maps.txt"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"file"		"maps.txt"
	}

	/* For the "rockthevote" plugin */
	"rockthevote"
	{
		"file"			"maps.txt"
	}
}