You are not logged in.

Dear visitor, welcome to sourceserver.info. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Tuesday, October 12th 2010, 10:09pm

ende der map ein vote ?

hallo da ich kein mani mehr drauf machen möchte und nur mit souce mod den Server betreiben möchte gibt es doch hier bestimmt einige die hier bestens Bescheid wissen ,und zwar soll am ende einer map also 3 min vorher eine vote erscheinen mit ein paar maps + extendet map weiß jemand wie man das einstellt oder was das für ein plugin ist ?

Posts: 2,498

Location: Schwelm

Occupation: Immobilien-Verwalter / Serveradministrator

wcf.user.option.userOption53: Nein

  • Send private message

2

Tuesday, October 12th 2010, 10:26pm

Re: ende der map ein vote ?

Ist standartmäßig enthalten bei SM. Einfach die machooser.smx aktivieren und die (nach Mapwechsel enstandene) Config in cfg/sourcemod bearbeiten.

3

Wednesday, October 13th 2010, 4:34pm

Re: ende der map ein vote ?

ok Danke habe ich ,jetzt gabe ich aber das Problem das er mir andauern im Game anzeigt wie lange die Map noch läuft ??
wisst ihr wie ich das deaktivieren kann ??

General_V

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

4

Wednesday, October 13th 2010, 4:41pm

Re: ende der map ein vote ?

Schau mal in der SourceMod.cfg (orangebox/cstrike/cfg/sourcemod/sourcemod.cfg)

Source code

1
2
3
4
5
6
// Specifies whether or not "timeleft" will automaticly be triggered every
// x seconds. Valid values are 0 (Disabled) to 1800 seconds.
// --
// Requires: basetriggers.smx
// Default: 0
sm_timeleft_interval 1800 <--


haste das auf 0 ?

5

Wednesday, October 13th 2010, 4:43pm

Re: ende der map ein vote ?

wo soll das denn drinn stehen ^^

6

Wednesday, October 13th 2010, 4:49pm

Re: ende der map ein vote ?

// This file was auto-generated by SourceMod (v1.3.4)
// ConVars for plugin "mapchooser.smx"


// Specifies how many more frags are allowed when map is extended.
// -
// Default: "10"
// Minimum: "5.000000"
sm_extendmap_fragstep "5"

// Specifies how many more rounds each extension makes
// -
// Default: "5"
// Minimum: "1.000000"
sm_extendmap_roundstep "5"

// Specifies how much many more minutes each extension makes
// -
// Default: "15"
// Minimum: "5.000000"
sm_extendmap_timestep "5"

// Specifies if a 'Don't Change' option should be added to early votes
// -
// Default: "1"
// Minimum: "0.000000"
sm_mapvote_dontchange "1"

// Specifies if MapChooser should run an end of map vote
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_mapvote_endvote "1"

// Specifies how many past maps to exclude from the vote.
// -
// Default: "5"
// Minimum: "0.000000"
sm_mapvote_exclude "5"

// Number of extensions allowed each map.
// -
// Default: "0"
// Minimum: "0.000000"
sm_mapvote_extend "1"

// Specifies how many maps to include in the vote.
// -
// Default: "5"
// Minimum: "2.000000"
// Maximum: "6.000000"
sm_mapvote_include "5"

// Specifies whether or not MapChooser should pick a map if no votes are received.
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_mapvote_novote "1"

// Specifies when to start the vote based on time remaining.
// -
// Default: "3.0"
// Minimum: "1.000000"
sm_mapvote_start "3.0"

// Specifies when to start the vote base on frags remaining.
// -
// Default: "5.0"
// Minimum: "1.000000"
sm_mapvote_startfrags "5.0"

// Specifies when to start the vote based on rounds remaining. Use 0 on TF2 to start vote during bonus round time
// -
// Default: "2.0"
// Minimum: "0.000000"
sm_mapvote_startround "2.0"

// Specifies how long the mapvote should be available for.
// -
// Default: "20"
// Minimum: "5.000000"
sm_mapvote_voteduration "20"


finde es nicht :O(

General_V

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

7

Wednesday, October 13th 2010, 4:57pm

Re: ende der map ein vote ?

dann hänge dies mit dran

Source code

1
2
3
4
5
6
// Specifies whether or not "timeleft" will automaticly be triggered every
// x seconds. Valid values are 0 (Disabled) to 1800 seconds.
// --
// Requires: basetriggers.smx
// Default: 0
sm_timeleft_interval 0


so

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
88
89
90
91
// This file was auto-generated by SourceMod (v1.3.4)
// ConVars for plugin "mapchooser.smx"


// Specifies how many more frags are allowed when map is extended.
// -
// Default: "10"
// Minimum: "5.000000"
sm_extendmap_fragstep "5"

// Specifies how many more rounds each extension makes
// -
// Default: "5"
// Minimum: "1.000000"
sm_extendmap_roundstep "5"

// Specifies how much many more minutes each extension makes
// -
// Default: "15"
// Minimum: "5.000000"
sm_extendmap_timestep "5"

// Specifies if a 'Don't Change' option should be added to early votes
// -
// Default: "1"
// Minimum: "0.000000"
sm_mapvote_dontchange "1"

// Specifies if MapChooser should run an end of map vote
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_mapvote_endvote "1"

// Specifies how many past maps to exclude from the vote.
// -
// Default: "5"
// Minimum: "0.000000"
sm_mapvote_exclude "5"

// Number of extensions allowed each map.
// -
// Default: "0"
// Minimum: "0.000000"
sm_mapvote_extend "1"

// Specifies how many maps to include in the vote.
// -
// Default: "5"
// Minimum: "2.000000"
// Maximum: "6.000000"
sm_mapvote_include "5"

// Specifies whether or not MapChooser should pick a map if no votes are received.
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_mapvote_novote "1"

// Specifies when to start the vote based on time remaining.
// -
// Default: "3.0"
// Minimum: "1.000000"
sm_mapvote_start "3.0"

// Specifies when to start the vote base on frags remaining.
// -
// Default: "5.0"
// Minimum: "1.000000"
sm_mapvote_startfrags "5.0"

// Specifies when to start the vote based on rounds remaining. Use 0 on TF2 to start vote during bonus round time
// -
// Default: "2.0"
// Minimum: "0.000000"
sm_mapvote_startround "2.0"

// Specifies how long the mapvote should be available for.
// -
// Default: "20"
// Minimum: "5.000000"
sm_mapvote_voteduration "20"

// Specifies whether or not "timeleft" will automaticly be triggered every
// x seconds. Valid values are 0 (Disabled) to 1800 seconds.
// --
// Requires: basetriggers.smx
// Default: 0
sm_timeleft_interval 0

8

Wednesday, October 13th 2010, 5:12pm

Re: ende der map ein vote ?

ok ich habs ^^

General_V

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

9

Wednesday, October 13th 2010, 5:28pm

Re: ende der map ein vote ?

hat geklappt ja ?

10

Thursday, October 14th 2010, 6:08pm

Re: ende der map ein vote ?

ja danke :-D

General_V

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

11

Thursday, October 14th 2010, 6:20pm

Re: ende der map ein vote ?

Alles Klar. Immer wieder gern ;)

iVeDAkiLLa

Trainee

Posts: 128

Location: Straubing

  • Send private message

12

Sunday, October 17th 2010, 8:21pm

Re: ende der map ein vote ?

Welche Datei wird den vom Mapchooser standartmässig für den End of Mapvote hergenommen?

Denn meine /configs/mapvote.ini ist es irgendwie nicht. :atak:
DoD:S &amp; CS:S Public Community visit http&#58;//www&#46;kodclan&#46;org

General_V

Super Moderator

Posts: 1,043

Location: Mönchengladbach

Occupation: Brückenkranführer / Staplerfahrer

wcf.user.option.userOption53: Nein

  • Send private message

13

Sunday, October 17th 2010, 8:26pm

Re: ende der map ein vote ?

schau mal HIER

BlackDrain

Beginner

Posts: 25

Location: Bad Mergentheim

Occupation: Industriemeister für Kunststoff- und Kautschuktechnik

wcf.user.option.userOption53: Ja

  • Send private message

14

Monday, October 18th 2010, 7:14pm

Re: ende der map ein vote ?

kann man in der mapchooser.cfg auch einstellen das er die map nach z.b. 30 min einfach wechselt. auch wenn die Runde noch nicht zuende ist.

Mein Prob ist ich habe einen Jump-Server (xc_maps) dort sind alle leute in einem Team, somit endet eine runde NIE und daher kann auch keine Map gewechselt werden, wenn eine gevotet wurde.

CHUluck4

Intermediate

Posts: 313

Location: düsseldorf

Occupation: Industriemechaniker

  • Send private message

15

Monday, October 18th 2010, 8:09pm

Re: ende der map ein vote ?

Quoted from ""BlackDrain""

kann man in der mapchooser.cfg auch einstellen das er die map nach z.b. 30 min einfach wechselt. auch wenn die Runde noch nicht zuende ist.

Mein Prob ist ich habe einen Jump-Server (xc_maps) dort sind alle leute in einem Team, somit endet eine runde NIE und daher kann auch keine Map gewechselt werden, wenn eine gevotet wurde.


Wenn du RTV für den Mapvote nutzt, wovon ich jetzt mal ausgehe, kannst du es in der rtv.cfg ändern.

Source code

1
2
3
4
5
6
// When to change the map after a succesful RTV: 0 - Instant, 1 - RoundEnd, 2 - MapEnd
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "2.000000"
sm_rtv_changetime "1"


Setze sm_rtv_changetime einfach auf 0, dann wird nach dem erfolgreichen voting die Map sofort gewechselt.

Soviel mir gerade bekannt ist, gibt es in der mapchooser.cfg diese Möglichkeit nicht.
Die mapchooser.cfg kannst du z.B. einstellen wie lange vor Mapende ein Voting gestartet werde soll usw.
Da die Runde bei dir aber nicht endet, geht es so nicht.

iVeDAkiLLa

Trainee

Posts: 128

Location: Straubing

  • Send private message

16

Wednesday, October 27th 2010, 8:51am

Re: ende der map ein vote ?

Ich bins nochmal, ich kapiere es immer noch nicht wieso nicht diese Datei für den Vote genommen wird:

addons/sourcemod/configs/mapvote.ini

Denn da könnte ich schön einstellen was auf welchen Slots kommt...

Sondern er nimmt die normale mapcycle.txt vom Rootverzeichnis her anstatt der mapvote.ini :(

Und was muss man ändern das "Extend Map" an erster und nicht an letzter Stelle steht?

Hier noch meine maplists.cfg:

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"
	{
		"file"			"addons/sourcemod/configs/adminmenu_maplist.ini"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"addons/sourcemod/configs/adminmenu_maplist.ini"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"default"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"default"
	}
}


Muss etwa bei default Requests ganz oben auch "default" rein?
DoD:S &amp; CS:S Public Community visit http&#58;//www&#46;kodclan&#46;org

CHUluck4

Intermediate

Posts: 313

Location: düsseldorf

Occupation: Industriemechaniker

  • Send private message

17

Wednesday, October 27th 2010, 2:34pm

Re: ende der map ein vote ?

Wo ist denn jetzt dein Problem?
Solange er überhaupt eine Datei nimmt um die Map zu voten ist doch alles gut.
Wo hast du denn eine mapvote.ini?
In dem angegeben Pfad habe ich keine sonder nur eine maplist.cfg

Posts: 2,498

Location: Schwelm

Occupation: Immobilien-Verwalter / Serveradministrator

wcf.user.option.userOption53: Nein

  • Send private message

18

Wednesday, October 27th 2010, 2:47pm

Re: ende der map ein vote ?

Änder mal "file" in "target", dann wird´s klappen.

Aber die ellenlangen Pfade brauchst du auch nicht. Leg die gewünschte Datei einfach im cstrike Ordner (da wo auch die mapcycle.txt liegt) ab.

iVeDAkiLLa

Trainee

Posts: 128

Location: Straubing

  • Send private message

19

Wednesday, October 27th 2010, 10:29pm

Re: ende der map ein vote ?

Bei welchem Befehl denn empletonPeck?

Diese Datei heisst mapvote.ini und ist im sourcemod/configs/ Verzeichnis. Die hat auch schon mal funktioniert, und vorallem das gute ist das man zb. Custommaps auf Slot 3 und 4 legen kann. ;)

Nur die will nicht mehr verwendet werden für den Mapvote am Ende der Map... :(

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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/******************************************************************************
This file should be in $basedir\cstrike\addons\sourcemod\configs\

///////////////////////////////////////////////////////////////////////////////
//                                Structure                                  //
///////////////////////////////////////////////////////////////////////////////

"Groupname"
{
// each group should contain a "slots" and a value that represent the number of 
// slots this group should be allowed to take in the mapvote.
	"slots"		"4"	

	// simple map
	"MapnameA" {}
	
	// advanced map settings
	"MapnameB"		
	{
		// you can have additional parameters for a map that can help 
		// (give hints on how) to pick out a suitable map

		// this map is best suited for player count above or equal 10. 
		// "0" for no minimum player count limit, default if nothing else is set.
		"min" "10"

		// this map is best suited for player count less than or equal 30. 
		// "-1" for no maximum player count limit, default if nothing else is set.
		"max" "30"
	}
}

///////////////////////////////////////////////////////////////////////////////
//                               Example config                              //
///////////////////////////////////////////////////////////////////////////////

"Standard maps"
{
	"slots"		"3"	

	"de_dust2"	{}
	"de_nuke"	[}
	"de_piranesi"	{}
	"cs_office"
	{
		"max"	"20"
	}
	"de_cabble"
	{
		"min"	"10"
	}
}

"Custom maps"
{
	"slots"		"2"

	"de_losttemple_pro" {}
	"de_nightfever"
	{
		"min"	"10"
		"max"	"20"
	}
	"de_cpl_strike"	{}
	"de_cpl_mill"	{}
	"de_cpl_fire"	{}
}
******************************************************************************/

///////////////////////////////////////////////////////////////////////////////
//                         Put your config here                              //
///////////////////////////////////////////////////////////////////////////////

"standard maps"
{
	"slots"		"3"

	"de_inferno"	{}
	"cs_italy"	{}
	"de_dust2"	{}
	"de_dolls"	{}
	"cs_office"	{}
	"de_aztec"	{}
	"de_cbble"	{}
	"de_nuke"	{}
	"de_piranesi"	{}
}

"Custom maps"
{
	"slots"		"1"

	"de_chateau"	{}
	"de_cpl_fire"	{}
	"de_dust"	{}
	"de_port"	{}
	"cs_compound"   {}
	"de_tehdas"	{}
	"de_nightfever"	{}
	"de_scud"	{}
	"de_vegas"	{}
	"de_cpl_mill"	{}
}
DoD:S &amp; CS:S Public Community visit http&#58;//www&#46;kodclan&#46;org

Posts: 2,498

Location: Schwelm

Occupation: Immobilien-Verwalter / Serveradministrator

wcf.user.option.userOption53: Nein

  • Send private message

20

Wednesday, October 27th 2010, 11:03pm

Re: ende der map ein vote ?

Ich meine das hier:

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"
	{
		"file"			"addons/sourcemod/configs/adminmenu_maplist.ini"
	}
	
	/* Admin menu, map voting menu */
	"sm_votemap menu"
	{
		"file"			"addons/sourcemod/configs/adminmenu_maplist.ini"
	}
	
	/* For the "randomcycle" plugin */
	"randomcycle"
	{
		"target"		"default"
	}
	
	/* For the "mapchooser" plugin */
	"mapchooser"
	{
		"target"		"default"
	}
	
	/* For the "nominations" plugin */
	"nominations"
	{
		"target"		"default"
	}
}


Änder die beiden Zuweisungen die nicht funzen mal in "target" anstatt sie bei "file" zu lassen.

War bei mir auch so. Danach musst du nix mehr machen.

Beachte aber bitte die Dinge, die ich zum Pfad gesagt habe. Du brauchst da kein ellenlages Ding. Leg
die einfach in cstrike ab und änder die Zuweisung auf den Dateinamen. In deinem Falle adminmenu_maplist.ini

Ich hab´s bei mir auch so gemacht, aber bei mir ist es eine einfache .txt Datei, die votemaplist.txt heisst.