Topic: [SERVER] Complete server config
I thought I'd post my server configs as I think most servers lack of votes, maps and gametypes. Yes I'm looking at you deathmatch server on dm1.
The result is a server with 4 [callvote] gametypes (DM, TDM, CTF and DUEL(1on1)), all the default maps, and of course no map rotation because you can just callvote them.
autoexec.cfg
sv_max_clients 12
sv_name your_server_name
sv_port 8303
sv_rcon_password your_rcon_password
sv_register 1
sv_spamprotection 0
sv_vote_map 1
sv_warmup 10
addvote restart 10
addvote exec dm.cfg
addvote exec ctf.cfg
addvote exec duel.cfg
addvote exec tdm.cfg
addvote "change_map ctf1"
addvote "change_map ctf2"
addvote "change_map ctf3"
addvote "change_map ctf4"
addvote "change_map ctf5"
addvote "change_map dm1"
addvote "change_map dm2"
addvote "change_map dm6"
addvote "change_map dm7"
addvote "change_map dm8"
addvote "change_map dm9"
ctf.cfg
sv_gametype ctf
sv_powerups 1
sv_scorelimit 500
sv_spectator_slots 0
sv_timelimit 0
sv_tournament_mode 0
sv_map_reload 1
dm.cfg
sv_gametype dm
sv_powerups 1
sv_scorelimit 20
sv_spectator_slots 0
sv_timelimit 0
sv_tournament_mode 0
sv_map_reload 1
duel.cfg
sv_gametype tdm
sv_powerups 0
sv_scorelimit 10
sv_spectator_slots 10
sv_timelimit 5
sv_tournament_mode 1
sv_map_reload 1
tdm.cfg
sv_gametype tdm
sv_powerups 1
sv_scorelimit 50
sv_spectator_slots 0
sv_timelimit 0
sv_tournament_mode 0
sv_map_reload 1
I hope this can help some people