Posts: 50
Threads: 17
Joined: Feb 17, 2010
How would I make it so that a certain map in the map cycle requires 70% of votes for it to be skipped?
Posts: 5,877
Threads: 182
Joined: Dec 11, 2004
You can set the overall minimum to 70%, but there is no built-in way to make a minimum on a per-map basis. You're free to edit the lua script to make it do whatever you like, however.
Something like this is an ugly hack, but will do:
Under:
Code:
local defpercent = convar.GetInteger("DF_mapveto_defaultpercent")
Add:
Code:
if(nextmap == "cp_MapYouHate") then
defpercent = 70
end