Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: sourceserver.info. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

Dienstag, 12. Oktober 2010, 22:09

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 ?

Beiträge: 2 498

Wohnort: Schwelm

Beruf: Immobilien-Verwalter / Serveradministrator

Rootserver vorhanden: Nein

  • Nachricht senden

2

Dienstag, 12. Oktober 2010, 22:26

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

Mittwoch, 13. Oktober 2010, 16:34

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

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

4

Mittwoch, 13. Oktober 2010, 16:41

Re: ende der map ein vote ?

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

Quellcode

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

Mittwoch, 13. Oktober 2010, 16:43

Re: ende der map ein vote ?

wo soll das denn drinn stehen ^^

6

Mittwoch, 13. Oktober 2010, 16:49

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

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

7

Mittwoch, 13. Oktober 2010, 16:57

Re: ende der map ein vote ?

dann hänge dies mit dran

Quellcode

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

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

Mittwoch, 13. Oktober 2010, 17:12

Re: ende der map ein vote ?

ok ich habs ^^

General_V

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

9

Mittwoch, 13. Oktober 2010, 17:28

Re: ende der map ein vote ?

hat geklappt ja ?

10

Donnerstag, 14. Oktober 2010, 18:08

Re: ende der map ein vote ?

ja danke :-D

General_V

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

11

Donnerstag, 14. Oktober 2010, 18:20

Re: ende der map ein vote ?

Alles Klar. Immer wieder gern ;)

12

Sonntag, 17. Oktober 2010, 20:21

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

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

13

Sonntag, 17. Oktober 2010, 20:26

Re: ende der map ein vote ?

schau mal HIER

BlackDrain

Anfänger

Beiträge: 25

Wohnort: Bad Mergentheim

Beruf: Industriemeister für Kunststoff- und Kautschuktechnik

Rootserver vorhanden: Ja

  • Nachricht senden

14

Montag, 18. Oktober 2010, 19:14

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

Fortgeschrittener

Beiträge: 313

Wohnort: düsseldorf

Beruf: Industriemechaniker

  • Nachricht senden

15

Montag, 18. Oktober 2010, 20:09

Re: ende der map ein vote ?

Zitat von »"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.

Quellcode

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.

16

Mittwoch, 27. Oktober 2010, 08:51

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:

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

Fortgeschrittener

Beiträge: 313

Wohnort: düsseldorf

Beruf: Industriemechaniker

  • Nachricht senden

17

Mittwoch, 27. Oktober 2010, 14:34

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

Beiträge: 2 498

Wohnort: Schwelm

Beruf: Immobilien-Verwalter / Serveradministrator

Rootserver vorhanden: Nein

  • Nachricht senden

18

Mittwoch, 27. Oktober 2010, 14:47

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.

19

Mittwoch, 27. Oktober 2010, 22:29

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... :(

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

Beiträge: 2 498

Wohnort: Schwelm

Beruf: Immobilien-Verwalter / Serveradministrator

Rootserver vorhanden: Nein

  • Nachricht senden

20

Mittwoch, 27. Oktober 2010, 23:03

Re: ende der map ein vote ?

Ich meine das hier:

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