11 changed files with 357 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
// disable autoaim |
|||
sv_aim 0 |
|||
|
|||
// disable clients' ability to pause the server |
|||
pausable 0 |
|||
|
|||
// maximum client movement speed |
|||
sv_maxspeed 320 |
|||
|
|||
// 20 minute timelimit |
|||
mp_timelimit 20 |
|||
|
|||
// cheats off |
|||
sv_cheats 0 |
|||
|
|||
// load ban files |
|||
exec listip.cfg |
|||
exec banned.cfg |
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,38 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
// disable autoaim |
|||
sv_aim 0 |
|||
|
|||
// disable clients' ability to pause the server |
|||
pausable 0 |
|||
|
|||
// maximum client movement speed |
|||
sv_maxspeed 320 |
|||
|
|||
// 20 minute timelimit |
|||
mp_timelimit 20 |
|||
|
|||
// cheats off |
|||
sv_cheats 0 |
|||
|
|||
// load ban files |
|||
exec listip.cfg |
|||
exec banned.cfg |
|||
|
|||
|
|||
|
|||
|
@ -0,0 +1,45 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
|
|||
//Fistful of Frags |
|||
|
|||
//// Game Modes |
|||
// 1 = Shootout |
|||
// 2 = Teamplay/Objectives |
|||
fof_sv_currentmode 1 |
|||
|
|||
//// Teamplay |
|||
// 0 = Free-for-all |
|||
// 1 = Team Deathmatch |
|||
mp_teamplay 0 |
|||
|
|||
//// Friendly Fire |
|||
// 0 = Friendly fire disabled |
|||
// 1 = Friendly fire enabled |
|||
mp_friendlyfire 0 |
|||
|
|||
|
|||
//// Team numbers |
|||
// 2 = Vigilantes & Desperados |
|||
// 3 = Vigilantes, Desperados & Bandidos |
|||
// 4 = Vigilantes, Desperados, Bandidos & Rangers |
|||
fof_sv_maxteams 4 |
|||
|
|||
//// Scrable Teams |
|||
// Teams get scrambled when 75% of kills come from same team |
|||
fof_sv_scrambleteams 1 |
|||
fof_sv_scrambleteams_maxkillratio 0.75 |
@ -0,0 +1,88 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
lua_log_sv 0 |
|||
|
|||
sv_rcon_banpenalty 0 |
|||
sv_rcon_maxfailures 20 |
|||
sv_rcon_minfailures 20 |
|||
sv_rcon_minfailuretime 20 |
|||
|
|||
// Network Settings |
|||
sv_downloadurl "" |
|||
sv_loadingurl "" |
|||
net_maxfilesize 64 |
|||
sv_maxrate 40000 |
|||
sv_minrate 40000 |
|||
sv_maxupdaterate 66 |
|||
sv_minupdaterate 10 |
|||
sv_maxcmdrate 60 |
|||
sv_mincmdrate 10 |
|||
|
|||
// Server Settings |
|||
sv_airaccelerate 100 |
|||
sv_gravity 600 |
|||
sv_allow_wait_command 0 |
|||
sv_allow_voice_from_file 0 |
|||
sv_turbophysics 0 |
|||
sv_max_usercmd_future_ticks 12 |
|||
gmod_physiterations 2 |
|||
sv_client_min_interp_ratio 1 |
|||
sv_client_max_interp_ratio 2 |
|||
think_limit 20 |
|||
sv_region 0 |
|||
sv_noclipspeed 5 |
|||
sv_noclipaccelerate 5 |
|||
sv_lan 0 |
|||
sv_alltalk 1 |
|||
sv_contact [email protected] |
|||
sv_cheats 0 |
|||
sv_allowcslua 0 |
|||
sv_pausable 0 |
|||
sv_filterban 1 |
|||
sv_forcepreload 1 |
|||
sv_footsteps 1 |
|||
sv_voiceenable 1 |
|||
sv_voicecodec vaudio_speex |
|||
sv_timeout 120 |
|||
sv_deltaprint 0 |
|||
sv_allowupload 0 |
|||
sv_allowdownload 0 |
|||
|
|||
// Sandbox Settings |
|||
sbox_noclip 0 |
|||
sbox_godmode 0 |
|||
sbox_weapons 0 |
|||
sbox_plpldamage 0 |
|||
sbox_maxprops 100 |
|||
sbox_maxragdolls 50 |
|||
sbox_maxnpcs 10 |
|||
sbox_maxballoons 10 |
|||
sbox_maxeffects 0 |
|||
sbox_maxdynamite 0 |
|||
sbox_maxlamps 5 |
|||
sbox_maxthrusters 20 |
|||
sbox_maxwheels 20 |
|||
sbox_maxhoverballs 20 |
|||
sbox_maxvehicles 1 |
|||
sbox_maxbuttons 20 |
|||
sbox_maxemitters 0 |
|||
sbox_maxspawners 0 |
|||
sbox_maxturrets 0 |
|||
|
|||
// Misc Config |
|||
exec banned_user.cfg |
|||
exec banned_ip.cfg |
|||
heartbeat |
@ -0,0 +1,15 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
@ -0,0 +1,35 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
// disable autoaim |
|||
sv_aim 0 |
|||
|
|||
// disable clients' ability to pause the server |
|||
pausable 0 |
|||
|
|||
// maximum client movement speed |
|||
sv_maxspeed 320 |
|||
|
|||
// 20 minute timelimit |
|||
mp_timelimit 20 |
|||
|
|||
// cheats off |
|||
sv_cheats 0 |
|||
|
|||
// load ban files |
|||
exec listip.cfg |
|||
exec banned.cfg |
|||
|
@ -0,0 +1,15 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
@ -0,0 +1,15 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
@ -0,0 +1,15 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
@ -0,0 +1,15 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
@ -0,0 +1,38 @@ |
|||
// Server Name |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
|
|||
// disable autoaim |
|||
sv_aim 0 |
|||
|
|||
// disable clients' ability to pause the server |
|||
pausable 0 |
|||
|
|||
// maximum client movement speed |
|||
sv_maxspeed 320 |
|||
|
|||
// 20 minute timelimit |
|||
mp_timelimit 20 |
|||
|
|||
// cheats off |
|||
sv_cheats 0 |
|||
|
|||
// load ban files |
|||
exec listip.cfg |
|||
exec banned.cfg |
|||
|
|||
|
|||
|
|||
|
Loading…
Reference in new issue