Browse Source
* feat(mcv): add Military Conflict: Vietnam server config Add server.cfg for Military Conflict: Vietnam (appid 1136190). Source engine game using CS:GO-style parameters. * fix(mcv): add mapcyclefile and document sv_hibernate_zombie_mode Add mapcyclefile setting (confirmed by community - works like CS:GO). Document sv_hibernate_zombie_mode which is unique to MCV - spawns bots when server is empty to keep it active in the server browser.pull/149/head
committed by
GitHub
1 changed files with 87 additions and 0 deletions
@ -0,0 +1,87 @@ |
|||||
|
// **************************************************************************** |
||||
|
// Military Conflict: Vietnam |
||||
|
// Config - server.cfg |
||||
|
// Date - 24/04/2026 |
||||
|
// **************************************************************************** |
||||
|
|
||||
|
// hostname - Hostname for server. |
||||
|
hostname "SERVERNAME" |
||||
|
|
||||
|
// rcon_password - remote console password. |
||||
|
rcon_password "ADMINPASSWORD" |
||||
|
|
||||
|
// sv_password - Server password for private servers. |
||||
|
sv_password "" |
||||
|
|
||||
|
// sv_contact - Server admin email. |
||||
|
// Example: sv_contact "[email protected]" |
||||
|
sv_contact "" |
||||
|
|
||||
|
// sv_lan - LAN mode; disables VAC and internet heartbeats. |
||||
|
// Default: sv_lan 0 |
||||
|
sv_lan 0 |
||||
|
|
||||
|
// sv_cheats - Disables cheat commands. Set to 1 to enable (disables VAC). |
||||
|
// Default: sv_cheats 0 |
||||
|
sv_cheats 0 |
||||
|
|
||||
|
// sv_tags - Tags shown in server browser. |
||||
|
// Example: sv_tags "vietnam,deathmatch" |
||||
|
sv_tags "" |
||||
|
|
||||
|
// sv_region - World region to report this server in. |
||||
|
// -1 = world, 0 = US East, 1 = US West, 2 = South America, 3 = Europe, |
||||
|
// 4 = Asia, 5 = Australia, 6 = Middle East, 7 = Africa |
||||
|
sv_region -1 |
||||
|
|
||||
|
// ................................ Server Logging ................................ // |
||||
|
|
||||
|
// log - Enable logging to file, console, and udp. |
||||
|
log on |
||||
|
|
||||
|
// sv_logbans - Log server bans in the server logs. |
||||
|
sv_logbans 1 |
||||
|
|
||||
|
// sv_logecho - Display log information to the server console. |
||||
|
sv_logecho 1 |
||||
|
|
||||
|
// sv_logfile - Log server information in the log file. |
||||
|
sv_logfile 1 |
||||
|
|
||||
|
// sv_log_onefile - Log server information to only one file. |
||||
|
sv_log_onefile 0 |
||||
|
|
||||
|
// sv_hibernate_when_empty - Hibernate when no clients connected. |
||||
|
sv_hibernate_when_empty 1 |
||||
|
|
||||
|
// sv_hibernate_zombie_mode - Spawn bots when server is empty to keep it active in server browser. |
||||
|
// Note: this is unique to Military Conflict: Vietnam and is enabled by default. |
||||
|
// Set to 0 to disable bot fill when empty. |
||||
|
// sv_hibernate_zombie_mode 1 |
||||
|
|
||||
|
// ................................ Map Rotation ................................ // |
||||
|
|
||||
|
// mapcyclefile - Name of the .txt file used to cycle the maps on multiplayer servers. |
||||
|
// Create a mapcycle.txt in the vietnam/ folder, one map name per line. |
||||
|
// Example: mcv_siege |
||||
|
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
|
// ................................ Server Query ................................ // |
||||
|
|
||||
|
host_name_store 1 |
||||
|
host_info_show 1 |
||||
|
host_players_show 2 |
||||
|
|
||||
|
// ................................ Ban List ................................ // |
||||
|
|
||||
|
// exec banned_user.cfg - Server banlist based on user steam ID. |
||||
|
exec banned_user.cfg |
||||
|
|
||||
|
// exec banned_ip.cfg - Server banlist based on user IP. |
||||
|
exec banned_ip.cfg |
||||
|
|
||||
|
// writeid - Writes a list of permanently-banned user IDs to banned_user.cfg. |
||||
|
writeid |
||||
|
|
||||
|
// writeip - Save the ban list to banned_ip.cfg. |
||||
|
writeip |
||||
Loading…
Reference in new issue