3 changed files with 104 additions and 106 deletions
@ -1,7 +1,7 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// * |
// * |
||||
// CodenameCURE - server.cfg * |
// CodenameCURE - server.cfg * |
||||
// Version 030916 * |
// Version 240217 * |
||||
// * |
// * |
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
@ -23,6 +23,30 @@ sv_contact "[email protected]" |
|||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
|
// Server tags - Tags show up on the in-game server browser. This helps |
||||
|
// users filter servers. |
||||
|
// vanilla - he server runs the default settings. |
||||
|
// custom - the server runs custom gameplay settings or mods. |
||||
|
// example: sv_tags "custom, fastdl" |
||||
|
sv_tags "" |
||||
|
|
||||
|
// ............................. Game Settings ............................. // |
||||
|
// info: Other settings that apply to this game. |
||||
|
|
||||
|
// Difficulty |
||||
|
// 0 - Easy |
||||
|
// 1 - Average |
||||
|
// 2 - Skilled |
||||
|
// 3 - Insane |
||||
|
sv_difficulty "1" |
||||
|
|
||||
|
// ............................... Map Cycles ............................... // |
||||
|
// info: There are several predefined mapcycles available that are listed below. |
||||
|
// You can also create your own custom mapcycle. |
||||
|
|
||||
|
// "mapcycle.txt" - all maps |
||||
|
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
// ............................. Server Logging ............................. // |
// ............................. Server Logging ............................. // |
||||
|
|
||||
//Enables logging to file, console, and udp < on | off >. |
//Enables logging to file, console, and udp < on | off >. |
||||
@ -78,30 +102,4 @@ exec banned_user.cfg |
|||||
exec banned_ip.cfg |
exec banned_ip.cfg |
||||
|
|
||||
writeid |
writeid |
||||
writeip |
writeip |
||||
|
|
||||
|
|
||||
|
|
||||
// ............................... Map Cycles ............................... // |
|
||||
// info: There are several predefined mapcycles available that are listed below. |
|
||||
// You can also create your own custom mapcycle. |
|
||||
|
|
||||
// "mapcycle.txt" - all maps |
|
||||
mapcyclefile "mapcycle.txt" |
|
||||
|
|
||||
// ........................ Game Specific Commands ........................ // |
|
||||
// info: any commands that only apply to this game. |
|
||||
|
|
||||
// Difficulty |
|
||||
// 0 - Easy |
|
||||
// 1 - Average |
|
||||
// 2 - Skilled |
|
||||
// 3 - Insane |
|
||||
sv_difficulty "1" |
|
||||
|
|
||||
// Server tags - Tags show up on the in-game server browser. This helps |
|
||||
// users filter servers. |
|
||||
// vanilla - he server runs the default settings. |
|
||||
// custom - the server runs custom gameplay settings or mods. |
|
||||
// example: sv_tags "custom, fastdl" |
|
||||
sv_tags "" |
|
@ -1,7 +1,7 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// * |
// * |
||||
// Fistful of Frags - server.cfg * |
// Fistful of Frags - server.cfg * |
||||
// Version 030916 * |
// Version 240417 * |
||||
// * |
// * |
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
@ -23,6 +23,50 @@ sv_contact "[email protected]" |
|||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
|
// ............................. Game Settings ............................. // |
||||
|
// info: any commands that only apply to this game. |
||||
|
|
||||
|
// Game Modes |
||||
|
// 1 = Shootout/2 Team Shootout/4 Team Shootout/Ghost Town |
||||
|
// 2 = Teamplay |
||||
|
// 3 = Break Bad |
||||
|
// 4 = Elimination |
||||
|
// 5 = Versus |
||||
|
fof_sv_currentmode 1 |
||||
|
|
||||
|
// Teamplay |
||||
|
// 0 = Free-for-all |
||||
|
// 1 = Team Deathmatch or Teamplay mode |
||||
|
mp_teamplay 0 |
||||
|
|
||||
|
// Team numbers |
||||
|
// 2 = Vigilantes & Desperados |
||||
|
// 3 = Vigilantes, Desperados & Bandidos |
||||
|
// 4 = Vigilantes, Desperados, Bandidos & Rangers |
||||
|
fof_sv_maxteams 4 |
||||
|
|
||||
|
// Friendly fire - Allows team members to injure other members of their team. |
||||
|
// 0 = Friendly fire disabled |
||||
|
// 1 = Friendly fire enabled |
||||
|
mp_friendlyfire 0 |
||||
|
|
||||
|
// ............................... Map Cycles ............................... // |
||||
|
// info: There are several predefined mapcycles available that are listed below. |
||||
|
// You can also create your own custom mapcycle. |
||||
|
|
||||
|
// "mapcycle.txt" - All Shootout/2 Team Shootout/4 Team Shootout maps |
||||
|
// "mapcycle_12.txt" - All 12 slot maps for Shootout/2 Team Shootout/4 Team Shootout |
||||
|
// "mapcycle_32.txt" - All 32 slot maps for Shootout/2 Team Shootout/4 Team Shootout |
||||
|
// "mapcycle_tp.txt" - All Teamplay maps |
||||
|
// "mapcycle_vs.txt" - All versus mode maps |
||||
|
// "mapcycle_gt.txt" - All Ghost Town maps |
||||
|
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
|
// ....................... Time Limits/Round Settings ....................... // |
||||
|
// Time spent on a single map (in minutes) before switching to a new one automatically. |
||||
|
// Default: mp_timelimit 0 |
||||
|
mp_timelimit 15 |
||||
|
|
||||
// ............................. Communication ............................. // |
// ............................. Communication ............................. // |
||||
|
|
||||
// Enable communication over voice via microphone. |
// Enable communication over voice via microphone. |
||||
@ -78,49 +122,4 @@ sv_logfile 1 |
|||||
|
|
||||
// Log server information to only one file. |
// Log server information to only one file. |
||||
// Default: sv_log_onefile 0 |
// Default: sv_log_onefile 0 |
||||
sv_log_onefile 0 |
sv_log_onefile 0 |
||||
|
|
||||
|
|
||||
// ............................... Map Cycles ............................... // |
|
||||
// info: There are several predefined mapcycles available that are listed below. |
|
||||
// You can also create your own custom mapcycle. |
|
||||
|
|
||||
// "mapcycle.txt" - All Shootout/2 Team Shootout/4 Team Shootout maps |
|
||||
// "mapcycle_12.txt" - All 12 slot maps for Shootout/2 Team Shootout/4 Team Shootout |
|
||||
// "mapcycle_32.txt" - All 32 slot maps for Shootout/2 Team Shootout/4 Team Shootout |
|
||||
// "mapcycle_tp.txt" - All Teamplay maps |
|
||||
// "mapcycle_vs.txt" - All versus mode maps |
|
||||
// "mapcycle_gt.txt" - All Ghost Town maps |
|
||||
mapcyclefile "mapcycle.txt" |
|
||||
|
|
||||
// ....................... Time Limits/Round Settings ....................... // |
|
||||
// Time spent on a single map (in minutes) before switching to a new one automatically. |
|
||||
// Default: mp_timelimit 0 |
|
||||
mp_timelimit 15 |
|
||||
|
|
||||
// ........................ Game Specific Commands ........................ // |
|
||||
// info: any commands that only apply to this game. |
|
||||
|
|
||||
// Game Modes |
|
||||
// 1 = Shootout/2 Team Shootout/4 Team Shootout/Ghost Town |
|
||||
// 2 = Teamplay |
|
||||
// 3 = Break Bad |
|
||||
// 4 = Elimination |
|
||||
// 5 = Versus |
|
||||
fof_sv_currentmode 1 |
|
||||
|
|
||||
// Teamplay |
|
||||
// 0 = Free-for-all |
|
||||
// 1 = Team Deathmatch or Teamplay mode |
|
||||
mp_teamplay 0 |
|
||||
|
|
||||
// Team numbers |
|
||||
// 2 = Vigilantes & Desperados |
|
||||
// 3 = Vigilantes, Desperados & Bandidos |
|
||||
// 4 = Vigilantes, Desperados, Bandidos & Rangers |
|
||||
fof_sv_maxteams 4 |
|
||||
|
|
||||
// Friendly fire - Allows team members to injure other members of their team. |
|
||||
// 0 = Friendly fire disabled |
|
||||
// 1 = Friendly fire enabled |
|
||||
mp_friendlyfire 0 |
|
@ -1,7 +1,7 @@ |
|||||
// **************************************************************************** |
// **************************************************************************** |
||||
// * |
// * |
||||
// No More Room in Hell - server.cfg * |
// No More Room in Hell - server.cfg * |
||||
// Version 150815 * |
// Version 240217 * |
||||
// * |
// * |
||||
// **************************************************************************** |
// **************************************************************************** |
||||
|
|
||||
@ -23,27 +23,12 @@ sv_contact "[email protected]" |
|||||
// Default: sv_lan 0 |
// Default: sv_lan 0 |
||||
sv_lan 0 |
sv_lan 0 |
||||
|
|
||||
// ............................... Map Cycles ............................... // |
// Server tags - Tags show up on the in-game server browser. This helps |
||||
// info: The .txt file used to cycle the maps on servers. |
// users filter servers. |
||||
|
// vanilla - the server runs the default settings. |
||||
// There are several predefined mapcycles available that are listed below. |
// custom - the server runs custom gameplay settings or mods. |
||||
// You can also create your own custom mapcycle. |
// example: sv_tags "custom, fastdl" |
||||
// "mapcycle.txt" - all maps |
sv_tags "" |
||||
// "mapcycle_objective.txt" - objective maps only |
|
||||
// "mapcycle_survival.txt" - survival maps only |
|
||||
mapcyclefile "mapcycle.txt" |
|
||||
|
|
||||
// ....................... Time Limits/Round Settings ....................... // |
|
||||
|
|
||||
// Time on a single map in minutes before switching to a new map automatically. |
|
||||
// Default: mp_timelimit 900 |
|
||||
// Recommended: mp_timelimit 45 |
|
||||
mp_timelimit 45 |
|
||||
|
|
||||
// Maximum number of rounds on a map before moving to the next map. |
|
||||
// Default: mp_maxrounds 1 |
|
||||
// Recommended: mp_maxrounds 2 |
|
||||
mp_maxrounds 2 |
|
||||
|
|
||||
// ............................. Game Settings ............................. // |
// ............................. Game Settings ............................. // |
||||
// info: Other settings that apply to this game. |
// info: Other settings that apply to this game. |
||||
@ -53,26 +38,42 @@ mp_maxrounds 2 |
|||||
// "classic" - classic difficulty. |
// "classic" - classic difficulty. |
||||
sv_difficulty "classic" |
sv_difficulty "classic" |
||||
|
|
||||
// Server tags - Tags show up on the in-game server browser. This helps |
|
||||
// users filter servers. |
|
||||
// vanilla - the server runs the default settings. |
|
||||
// custom - the server runs custom gameplay settings or mods. |
|
||||
// example: sv_tags "custom, fastdl" |
|
||||
sv_tags "" |
|
||||
|
|
||||
// Friendly fire - Allows team members to injure other members of their team. |
// Friendly fire - Allows team members to injure other members of their team. |
||||
// Default: mp_friendlyfire 0 |
// Default: mp_friendlyfire 0 |
||||
mp_friendlyfire 0 |
mp_friendlyfire 0 |
||||
|
|
||||
// ............................. Communication ............................. // |
|
||||
|
|
||||
// Enable communication over voice via microphone. |
// Enable communication over voice via microphone. |
||||
// Default: sv_voiceenable 1 |
// Default: sv_voiceenable 1 |
||||
sv_voiceenable 1 |
sv_voiceenable 1 |
||||
|
|
||||
// Players can hear all other players, no team restrictions. |
// Players can hear all other players, no team restrictions. |
||||
// Default: sv_alltalk 0 |
// Default: sv_alltalk 0 |
||||
// Recommended: sv_alltalk 1 |
// Recommended |
||||
|
|
||||
|
// ............................... Map Cycles ............................... // |
||||
|
// info: There are several predefined mapcycles available that are listed below. |
||||
|
// You can also create your own custom mapcycle. |
||||
|
|
||||
|
// "mapcycle.txt" - all maps |
||||
|
// "mapcycle_objective.txt" - objective maps only |
||||
|
// "mapcycle_survival.txt" - survival maps only |
||||
|
mapcyclefile "mapcycle.txt" |
||||
|
|
||||
|
// ....................... Time Limits/Round Settings ....................... // |
||||
|
|
||||
|
// Time on a single map in minutes before switching to a new map automatically. |
||||
|
// Default: mp_timelimit 900 |
||||
|
// Recommended: mp_timelimit 45 |
||||
|
mp_timelimit 45 |
||||
|
|
||||
|
// Maximum number of rounds on a map before moving to the next map. |
||||
|
// Default: mp_maxrounds 1 |
||||
|
// Recommended: mp_maxrounds 2 |
||||
|
mp_maxrounds 2 |
||||
|
|
||||
|
: sv_alltalk 1 |
||||
sv_alltalk 1 |
sv_alltalk 1 |
||||
|
|
||||
// ............................. Fast Download .............................. // |
// ............................. Fast Download .............................. // |
||||
|
Loading…
Reference in new issue