You are not logged in.

1

Thursday, June 9th 2011, 11:48pm

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

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

This post has been edited 1 times, last edit by "Mathmos" (Jun 10th 2011, 6:53am)


Posts: 2,498

Location: Schwelm

Occupation: Immobilien-Verwalter / Serveradministrator

wcf.user.option.userOption53: Nein

  • Send private message

2

Thursday, June 9th 2011, 11:53pm

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

Friday, June 10th 2011, 12:35am

Also ich hab das jetzt so:

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

Friday, June 10th 2011, 6:58am

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

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