![]() |
[NEED HELP] Dedicated Server Help - Printable Version +- Xonotic Forums (https://forums.xonotic.org) +-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3) +--- Forum: Xonotic - Help & Troubleshooting (https://forums.xonotic.org/forumdisplay.php?fid=4) +--- Thread: [NEED HELP] Dedicated Server Help (/showthread.php?tid=10057) |
Dedicated Server Help - Oritrix - 09-08-2025 I cannot work out what is wrong with my cfg file. Once a match ends, the server does not go to the next map and begin the game. It also only runs death matches. // Xonotic Dedicated Server // --- Identity --- sv_public 0 // 1 if you want it public hostname "Esports Server" sv_motd "Welcome. Be respectful." // --- Admin / Access --- rcon_password "fakepassword" sv_vote_call 1 sv_vote_master 1 sv_vote_gametype 1 sv_vote_gametype_options "dm tdm ctf ca ft kh as dom lms ka inv ons rc cts nb" sv_vote_commands "restart nextmap endmatch shuffleteams" maxplayers 32 minplayers 0 minplayers_per_team 0 g_maplist "afterslime boil catharsis courtfun drain erbium finalrage fuse glowplant implosion oilrig runningman silentsiege solarium stormkeep techassault xoylent" g_maplist_shuffle 1 g_maplist_mostrecent_count 3 g_maplist_votable 6 g_maplist_votable_suggestions 2 g_maplist_votable_abstain 1 g_maplist_votable_nodetail 1 timelimit_override 10 // 10 minutes fraglimit_override 20 // 20 frags (applies to DM/TDM) // leave capturelimit etc. at -1 so only used in their gamemode g_start_delay 10 g_antilag 2 sv_maxrate 1000000 sys_ticrate 0.0333333 sv_status_privacy 1 sv_weaponstats_file "" gametype dm g_instagib 0 g_grappling_hook 0 g_jetpack 0 g_powerups -1 sv_gravity 800 RE: Dedicated Server Help - lister - 09-09-2025 try removing g_maplist line. static maplist will not work like you want for all these gametypes. with default (empty) g_maplist, it will populate automatically based on voted gametype. |