Sie sind nicht angemeldet.

1

Dienstag, 17. März 2009, 21:23

Mani Map-Wechsel

Hallo,

habe eine Frage. Wenn ich eine Map laufen lasse, habe ich eingestellt, das 2 min vor Mapende ein Vote für die nächste Map kommt.

Soweit, so gut.

Nur wenn die neue Map fest steht, wechselt sie erst sehr spät. Auch ist mir aufgefallen, das es meistens erst beim 10 Teamwin wechselt.
Gibt es da ne extra einstellung?

Achso, in der Serverconfig habe ich das:

mp_timelimit 5
mp_winlimit 0
mp_maxrounds 0

Grüße

HSFighter

Administrator

Beiträge: 1 517

Wohnort: Flensburg

Beruf: Industrieelektroniker

Rootserver vorhanden: Nein

  • Nachricht senden

2

Dienstag, 17. März 2009, 22:55

Re: Mani Map-Wechsel

Hi,
gehe mal auf http://www.mani-admin-webconfig.net


  • Lade deine mani_server.cfg auf der Seite hoch!
  • Dann das "Module: Voting Functionality" suchen.
  • Deine Einstellung machen/ändern.
  • Unten dann auf speichern.


Wenn es danach nicht funktioniert, dann poste mal bitte den Abschnitt
"Module: Voting Functionality" aus deiner mani_server.cfg.

MfG



-
Anti Cheat: www.smacbans.com
Kein direkter Support per PM (nur auf Anforderung)

3

Freitag, 20. März 2009, 20:43

Re: Mani Map-Wechsel

Danke für die Hilfe. Problem hat sich aber schon erledigt.

Hätte da eine andere Frage.

Und zwar geht es allgemein um die Voting-Funktion. Ich möchte ganz gerne erreichen, das bei einem Voting der Prozentuale Anteil
genommen wird, aber ohne jedoch eine maximale Spieleranzahl fest zu legen.

Beispiel:

Es sind 2 spieler auf dem Server. Einer führt den Befehl "votemap" aus. Um den Befehl jedoch wirksam zu machen, müssen 60 Prozent erreicht werden.
Bei 2 Spielern hat ja jeder 50 % Stimmrecht. In dem Fall müssten sich beide einig sein um die Map zu wechseln.

Anderer Fall mit 3 Spielern. Hier hat ja jeder 33,33 % Stimmrecht. In dem Fall müssten sich 2 einig sein.

Wichtig ist auch, das alle spieler auf dem server ne stimme abgeben müssen.

Hier mal meine Einstellungen:

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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// *****************************************************************************
// Module : Voting functionality
//
// Desc : There are two types of vote. System started where an admin has
//        triggered a vote or User started where a user has started a vote
//        The following cvars control the configuration of the voting
// *****************************************************************************

// Allow voting 1 = on, 0 = off (this cvar controls ALL voting)
mani_voting 1

// Defines the last number of maps played to not show in random votemap lists
mani_vote_dont_show_last_maps 0

// Defines the time in minutes a extend vote will add to the timeleft counter
mani_vote_extend_time 20

// Defines the whether the a map can be extended
mani_vote_allow_extend 1

// Defines amount of time in seconds a vote will be allowed for
mani_vote_allowed_voting_time 45

// Defines whether a random map vote will be displayed towards the end of 
// the map
mani_vote_allow_end_of_map_vote 1

// Number of extensions a map is allowed via user vote or random map vote, 
// 0 = infinite
mani_vote_max_extends 0

// Number of rounds to extend by if mp_winlimit is not 0
mani_vote_extend_rounds 0

// Define the file to use for random map vote
// 0 = mapcycle.txt, 1 = votemapslist.txt, 2 = maplist.txt
mani_vote_mapcycle_mode_for_random_map_vote 2

// Define the file that admin can select from for admin
// started vote.
// 0 = mapcycle.txt, 1 = votemapslist.txt, 2 = maplist.txt
mani_vote_mapcycle_mode_for_admin_map_vote 2

// Defines how many minutes before the end of the map that a random map vote 
// is started
mani_vote_time_before_end_of_map_vote 2

// Defines how many maps can be in the end of map vote
mani_vote_max_maps_for_end_of_map_vote 20

// Allow team swap option as part of Extend map on end
// of map vote (CSS Only)
mani_vote_end_of_map_swap_team 0

// Defines the vote percentage required to set map
mani_vote_end_of_map_percent_required 60

// Defines the vote percentage required to set rcon vote
mani_vote_rcon_percent_required 60

// Defines the vote percentage required to set question vote
mani_vote_question_percent_required 60

// Defines the vote percentage required to set map vote
mani_vote_map_percent_required 60

// Defines the vote percentage required to set random map vote
mani_vote_random_map_percent_required 60

// This cvar determines how the players see the votes during voting
// 0 = quiet mode, 
// 1 = show players as they vote but not their choice, 
// 2 = Show voted choice but not player, 
// 3 = show player name and their choice
mani_vote_show_vote_mode 2

// Following cvar now has 2 modes of operation
// 0 = alive players will see vote menu,
// 1 = alive players will need to type vote to access the menu,
mani_vote_dont_show_if_alive 0

// Allow user started votemaps
mani_vote_allow_user_vote_map 1

// Allow the users to extend maps if time based
mani_vote_allow_user_vote_map_extend 1

// Allow the users to kick players by vote
mani_vote_allow_user_vote_kick 1

// Allow the users to ban players by vote
mani_vote_allow_user_vote_ban 1

// Defines the vote percentage required to set an extend map vote
mani_vote_extend_percent_required 60

// Percentage of votes required from players before map change
mani_vote_user_vote_map_percentage 60

// Time after a new map starts that voting is allowed
mani_vote_user_vote_map_time_before_vote 60

// Minimum number of votes required to change a map (override vote percentage)
mani_vote_user_vote_map_minimum_votes 2

// 0 = only when no admin on server, 1 = all the time
mani_vote_user_vote_kick_mode 0

// Percentage of votes required from players before kick occurs
mani_vote_user_vote_kick_percentage 60

// Time after a new map starts that voting is allowed
mani_vote_user_vote_kick_time_before_vote 5

// Minimum number of votes required (override vote percentage)
mani_vote_user_vote_kick_minimum_votes 2

// 0 = only when no admin on server, 1 = all the time
mani_vote_user_vote_ban_mode 0

// Percentage of votes required from players before kick occurs
mani_vote_user_vote_ban_percentage 60

// Time after a new map starts that voting is allowed
mani_vote_user_vote_ban_time_before_vote 60

// Minimum number of votes required (override vote percentage)
mani_vote_user_vote_ban_minimum_votes 2

// Time in minutes for the ban, 0 = permanent ban
mani_vote_user_vote_ban_time 5

// 0 = ban by ID, 1 = ban by IP, 2 = ban by ID and IP
mani_vote_user_vote_ban_type 0

// Allow rock the vote
mani_vote_allow_rock_the_vote 0

// Defines the vote percentage required to set map
mani_vote_rock_the_vote_percent_required 60

// Time before rockthevote can be started after a new map starts
mani_vote_time_before_rock_the_vote 120

// Number of nominations included in the vote
mani_vote_rock_the_vote_number_of_nominations 4

// Number of random maps chosen from votemaplist.txt
mani_vote_rock_the_vote_number_of_maps 20

// Percentage of players on server required to type rockthevote before 
// it starts
mani_vote_rock_the_vote_threshold_percent 60

// Minimum number of players required to type rockthevote before it starts
mani_vote_rock_the_vote_threshold_minimum 1

// This controls the default mode a player will have their 'show vote progress'
// set to when they first ever join your server. This setting is applied to 
// the player's stored record withing player_settings.dat it does not control
// whether the death beam functionality is on or off.
// 0 = player settings default to off, 1 = player settings default to on
// 1 = default on, 0 = default off
mani_player_settings_vote_progress 1


Danke für die Hilfe.