53 changed files with 1176 additions and 234 deletions
@ -0,0 +1,77 @@ |
|||
// |
|||
// network.cfg - Defines network tuning parameters |
|||
// |
|||
// This file is to be passed to the -cfg parameter on the command line for the server |
|||
// See http://community.bistudio.com/wiki/basic.cfg |
|||
// The following settings are the suggested settings |
|||
|
|||
// BANDWIDTH SETTINGS |
|||
|
|||
// Bandwidth the server is guaranteed to have (in bps) |
|||
// General guideline is NumberOfPlayers * 256kb |
|||
// Default: 131072 |
|||
MinBandwidth=5120000; |
|||
// Bandwidth the server can never go above (in bps) |
|||
// For a single server, use full network speed; decrease when running multiple servers |
|||
MaxBandwidth=10240000; |
|||
|
|||
// PACKET SETTINGS |
|||
|
|||
// Maximum number of packets per frame. |
|||
// Increasing the value potentially decreases lag, but increases desync |
|||
// Default: 128 |
|||
MaxMsgSend=2048; |
|||
// Maximum payload of guaranteed packet (in b) |
|||
// Small messages are packed to larger packets |
|||
// Guaranteed packets are used for non-repetitive events, like shooting |
|||
// Lower value means more packets are sent, so less events will get combined |
|||
// Default: 512 |
|||
MaxSizeGuaranteed=512; |
|||
// Maximum payload of non-guaranteed packet (in b) |
|||
// Increasing this value may improve bandwidth requirement, but may also increase lag |
|||
// Largest factor in desync |
|||
// Guidance is half of MaxSizeGuaranteed |
|||
// Default: 256 |
|||
MaxSizeNonguaranteed=256; |
|||
// Maximal size of a packet sent over the network |
|||
// Only necessary if ISP forces lower packet size and there are connectivity issues |
|||
// Default: 1400 |
|||
// class sockets{maxPacketSize=1400}; |
|||
|
|||
// SMOOTHNESS SETTINGS |
|||
|
|||
// Minimal error required to send network updates for far units |
|||
// Smaller values will make for smoother movement at long ranges, but will increase network traffic |
|||
// Default: 0.003 |
|||
MinErrorToSend=0.01; |
|||
// Minimal error required to send network updates for near units |
|||
// Using larger value can reduce traffic sent for near units |
|||
// Also controls client to server traffic |
|||
// Default: 0.01 |
|||
MinErrorToSendNear=0.02; |
|||
|
|||
// GEOLOCATION SETTINGS |
|||
|
|||
// Server latitude |
|||
serverLatitude=52; |
|||
serverLatitudeAuto=52; |
|||
|
|||
// Server Longitude |
|||
serverLongitude=0; |
|||
serverLongitudeAuto=0; |
|||
// MISC |
|||
// View Distance (not sure if this actually works) |
|||
viewDistance=10000; |
|||
|
|||
// Maximum size (in b) for custom face or sound files |
|||
// Default: 0 |
|||
MaxCustomFileSize=0; |
|||
// Server language |
|||
language="English"; |
|||
steamLanguage="English"; |
|||
// Adapter |
|||
adapter=-1; |
|||
// Windowed mode |
|||
Windowed=0; |
|||
|
|||
3D_Performance=1.000000; |
@ -0,0 +1,97 @@ |
|||
#!/bin/bash |
|||
# Deathmatch Classic |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://gameservermanagers.com |
|||
# Version: 150315 |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Email |
|||
# (on|off) |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Steam login |
|||
steamuser="anonymous" |
|||
steampass="" |
|||
|
|||
# Start Variables |
|||
defaultmap="dcdm5" |
|||
maxplayers="16" |
|||
port="27015" |
|||
clientport="27005" |
|||
ip="0.0.0.0" |
|||
|
|||
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 |
|||
fn_parms(){ |
|||
parms="-game dmc -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Steam |
|||
appid="90 +app_set_config 90 mod dmc" |
|||
|
|||
# Server Details |
|||
servicename="dmc-server" |
|||
gamename="Deathmatch Classic" |
|||
engine="goldsource" |
|||
|
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
|||
selfname="$(basename $0)" |
|||
lockselfname=".${servicename}.lock" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}/dmc" |
|||
executabledir="${filesdir}" |
|||
executable="./hlds_run" |
|||
servercfgdir="${systemdir}" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
defaultcfg="${servercfgdir}/server.cfg" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
|
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
fn_runfunction(){ |
|||
# Functions are downloaded and run with this function |
|||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
|||
cd "${rootdir}" |
|||
if [ ! -d "functions" ]; then |
|||
mkdir functions |
|||
fi |
|||
cd functions |
|||
echo -e "loading ${functionfile}...\c" |
|||
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- |
|||
chmod +x "${functionfile}" |
|||
cd "${rootdir}" |
|||
sleep 1 |
|||
fi |
|||
source "${rootdir}/functions/${functionfile}" |
|||
} |
|||
|
|||
fn_functions(){ |
|||
# Functions are defined in fn_functions. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
fn_functions |
|||
|
|||
getopt=$1 |
|||
fn_getopt |
@ -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,98 @@ |
|||
#!/bin/bash |
|||
# Double Action: Boogaloo |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://gameservermanagers.com |
|||
# Version: 220315 |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Email |
|||
# (on|off) |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Steam login |
|||
steamuser="anonymous" |
|||
steampass="" |
|||
|
|||
# Start Variables |
|||
defaultmap="da_rooftops" |
|||
maxplayers="10" |
|||
port="27015" |
|||
sourcetvport="27020" |
|||
clientport="27005" |
|||
ip="0.0.0.0" |
|||
|
|||
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server |
|||
fn_parms(){ |
|||
parms="-strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Steam |
|||
appid="317800" |
|||
|
|||
# Server Details |
|||
servicename="da-server" |
|||
gamename="Double Action: Boogaloo" |
|||
engine="source" |
|||
|
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
|||
selfname="$(basename $0)" |
|||
lockselfname=".${servicename}.lock" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}/dab" |
|||
executabledir="${filesdir}" |
|||
executable="./dabds.sh" |
|||
servercfgdir="${systemdir}/cfg" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
defaultcfg="${servercfgdir}/server.cfg" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
|
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
fn_runfunction(){ |
|||
# Functions are downloaded and run with this function |
|||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
|||
cd "${rootdir}" |
|||
if [ ! -d "functions" ]; then |
|||
mkdir functions |
|||
fi |
|||
cd functions |
|||
echo -e "loading ${functionfile}...\c" |
|||
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgameservers/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- |
|||
chmod +x "${functionfile}" |
|||
cd "${rootdir}" |
|||
sleep 1 |
|||
fi |
|||
source "${rootdir}/functions/${functionfile}" |
|||
} |
|||
|
|||
fn_functions(){ |
|||
# Functions are defined in fn_functions. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
fn_functions |
|||
|
|||
getopt=$1 |
|||
fn_getopt |
Binary file not shown.
@ -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 |
|||
|
@ -1,15 +1,176 @@ |
|||
// Server Name |
|||
//********************************************************************************* |
|||
// * |
|||
// No More Room in Hell - Community Developed Server.cfg * |
|||
// Version 1.3 - March 7, 2015 * |
|||
// Version 1.0: http://avidblur.com/nmrih/server.cfg * |
|||
// Version 1.2: http://fastdl.zombiegaming.net/nmrih/cfg/server.cfg * |
|||
// Version 1.3: http://gameservermanagers.com/nmrih/server.cfg * |
|||
// * |
|||
// ******************************************************************************** |
|||
|
|||
// ............................ Basic Server Settings ............................. // |
|||
|
|||
// The name of your server as you want it to show up on NMRiH's Server Browser |
|||
hostname "hostname" |
|||
|
|||
// RCON Password |
|||
// The contact email for your main server admin |
|||
sv_contact "[email protected]" |
|||
|
|||
// Password for rcon (remote connection), can be left blank for no RCon, it's recommended that you make a secure password. |
|||
// Need a secure password? Check out https://www.grc.com/passwords.htm for automatically generated ones |
|||
rcon_password "rconpassword" |
|||
|
|||
// Server Password |
|||
// Makes your server private so only people with the password can play on it |
|||
sv_password "" |
|||
|
|||
// Server Logging |
|||
// The region of the world this server will report as being located in |
|||
// -1 = World |
|||
// 0 = US East Coast |
|||
// 1 = US West Coast |
|||
// 2 = South America |
|||
// 3 = Europe |
|||
// 4 = Asia |
|||
// 5 = Australia |
|||
// 6 = Middle East |
|||
// 7 = Africa |
|||
sv_region -1 |
|||
|
|||
// Is this server running on LAN or is it accessable to the world wide web? |
|||
// 0 = Internet |
|||
// 1 = Local Area Network |
|||
sv_lan 0 |
|||
|
|||
// Enable communication over voice via microphone |
|||
sv_voiceenable 1 |
|||
|
|||
// Players can hear all other players, no team restrictions 0=off 1=on |
|||
sv_alltalk 1 |
|||
|
|||
//Gameplay can be chosen between classic/normal, sv_difficulty casual is casual, sv_difficulty normal is normal |
|||
sv_difficulty casual |
|||
|
|||
// Time spend on a single map (in minutes) before switching to a new one automatically |
|||
mp_timelimit 45 |
|||
|
|||
// Maximum number of rounds to spend on a map before moving to the next one |
|||
//mp_maxrounds 0 |
|||
|
|||
// Name of the .txt file containing a list of maps the server should cycle through |
|||
// mapcycle.txt - All maps |
|||
// mapcycle_objective.txt - Objective maps only |
|||
// mapcycle_survival.txt - Survival maps only |
|||
mapcyclefile "mapcycle.txt" |
|||
|
|||
// A comma seperated list of tags that will show up in the server browser & make it easier for users to find the server they're looking for |
|||
// "Official" tags: |
|||
// custom - If your server is running custom gameplay settings/configs |
|||
// objective - If your server only cycles through objective maps |
|||
// survival - If your server only cycles through survival maps |
|||
// IE: sv_tags "example1, example2, example3" |
|||
sv_tags "objective, survival, vanilla" |
|||
|
|||
// ............................ Download Settings .................................. // |
|||
|
|||
// Allow clients to upload sprays etc (NMRiH has sprays disabled by default, so 0 might be the best option) |
|||
sv_allowupload 0 |
|||
|
|||
// Allow clients to download files |
|||
sv_allowdownload 1 |
|||
|
|||
// Maximum file size allowed for downloading individual maps/textures etc (Calculated in MB) |
|||
net_maxfilesize 64 |
|||
|
|||
// Allow downloading of maps/textures/etc from a website for faster download speeds! |
|||
// NOTE: If left blank (sv_downloadurl "") connecting clients will download custom maps etc directly from your Gameserver. |
|||
// |
|||
// Example: 1 - Game server has a map called "nmo_example.bsp" located in the map folder |
|||
// 2 - Web server has the exact same "nmo_example.bsp" file located at "http://www.yourwebsite.com/nmrih/maps/nmo_example.bsp" |
|||
// 3 - Therefore, sv_downloadurl should be set to "http://www.yourwebsite.com/nmrih/" |
|||
// |
|||
sv_downloadurl "" |
|||
|
|||
|
|||
// ............................ Performance Settings .............................. // |
|||
|
|||
// Sets a limit to the frame rate that the server runs at (Set a framerate your server can consistently manage) |
|||
fps_max 66 |
|||
|
|||
// Min bandwidth rate allowed on server, 0 = Unlimited |
|||
sv_minrate 0 |
|||
|
|||
// Max bandwidth rate allowed on server, 0 = Unlimited |
|||
sv_maxrate 60000 |
|||
|
|||
// |
|||
net_splitpacket_maxrate 60000 |
|||
|
|||
sv_parallel_packentities 1 |
|||
|
|||
sv_parallel_sendsnapshot 1 |
|||
|
|||
// Use a high priority thread to send queued packets out instead of sending them each frame. |
|||
net_queued_packet_thread 1 |
|||
|
|||
// Max # of seconds we can wait for next packets to be sent based on rate setting (0 == no limit). |
|||
net_maxcleartime 0.01 |
|||
|
|||
// Minimum updates per second that the server will allow |
|||
sv_minupdaterate 66 |
|||
|
|||
// Maximum updates per second that the server will allow |
|||
sv_maxupdaterate 66 |
|||
|
|||
// Minimum commands per second that the server will allow |
|||
sv_mincmdrate 66 |
|||
|
|||
// Maximum commands per second that the server will allow |
|||
sv_maxcmdrate 66 |
|||
|
|||
sv_client_min_interp_ratio 0 |
|||
|
|||
sv_client_max_interp_ratio 4 |
|||
|
|||
sv_client_cmdrate_difference 0 |
|||
|
|||
// This can be used to force the value of cl_predict for connected clients (only while they are connected). |
|||
// -1 = let clients set cl_predict to anything |
|||
// 0 = force cl_predict to 0 |
|||
// 1 = force cl_predict to 1 |
|||
sv_client_predict 1 |
|||
|
|||
// .............................. Additional Settings .............................. // |
|||
|
|||
// Allow the use of the "wait" command by clients? (Best left disabled to prevent the abuse of scripts - 0) |
|||
sv_allow_wait_command 0 |
|||
|
|||
// Enable logging? (off/on) |
|||
log on |
|||
sv_logbans 1 |
|||
sv_logecho 1 |
|||
sv_logfile 1 |
|||
sv_log_onefile 0 |
|||
sv_log_onefile 0 |
|||
|
|||
// ............................... Sourcemod Settings .............................. // |
|||
|
|||
|
|||
// ******************************************************************************** |
|||
// * |
|||
// Advanced Server Settings (Best left untouched!) * |
|||
// * |
|||
// ******************************************************************************** |
|||
|
|||
exec banned_user.cfg |
|||
exec banned_ip.cfg |
|||
|
|||
//These commands will run on map change, sometimes a crash may wipe a recent ban from your banlist, this minimises that issue |
|||
writeid |
|||
writeip |
|||
|
|||
//********************************************************************************************************** |
|||
// Master Server Settings |
|||
//********************************************************************************************************** |
|||
sv_master_legacy_mode 0 // Disable legacy mode, since steam master servers won't support it anymore |
|||
heartbeat // Send heartbeat that this server is ready. Should be the last line of the config |
|||
//********************************************************************************************************** |
|||
|
|||
//-----End of Server.cfg----- |
@ -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,97 @@ |
|||
#!/bin/bash |
|||
# Half-Life: Opposing Force |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://danielgibbs.co.uk |
|||
# Version: 210115 |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Email |
|||
# (on|off) |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Steam login |
|||
steamuser="anonymous" |
|||
steampass="" |
|||
|
|||
# Start Variables |
|||
defaultmap="op4_bootcamp" |
|||
maxplayers="16" |
|||
port="27015" |
|||
clientport="27005" |
|||
ip="0.0.0.0" |
|||
|
|||
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 |
|||
fn_parms(){ |
|||
parms="-game gearbox -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Steam |
|||
appid="90 +app_set_config 90 mod gearbox" |
|||
|
|||
# Server Details |
|||
servicename="opfor-server" |
|||
gamename="Half-Life: Opposing Force" |
|||
engine="goldsource" |
|||
|
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
|||
selfname="$(basename $0)" |
|||
lockselfname=".${servicename}.lock" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}/gearbox" |
|||
executabledir="${filesdir}" |
|||
executable="./hlds_run" |
|||
servercfgdir="${systemdir}" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
defaultcfg="${servercfgdir}/server.cfg" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
|
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
fn_runfunction(){ |
|||
# Functions are downloaded and run with this function |
|||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
|||
cd "${rootdir}" |
|||
if [ ! -d "functions" ]; then |
|||
mkdir functions |
|||
fi |
|||
cd functions |
|||
echo -e "loading ${functionfile}...\c" |
|||
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- |
|||
chmod +x "${functionfile}" |
|||
cd "${rootdir}" |
|||
sleep 1 |
|||
fi |
|||
source "${rootdir}/functions/${functionfile}" |
|||
} |
|||
|
|||
fn_functions(){ |
|||
# Functions are defined in fn_functions. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
fn_functions |
|||
|
|||
getopt=$1 |
|||
fn_getopt |
@ -1,38 +1,46 @@ |
|||
<h1>Linux Game Server Manager - <a href="https://github.com/dgibbs64/linuxgameservers/issues?q=is%3Aopen+-label%3A%22non+script+issue%22+-label%3A%22server+request%22+-label%3Aenhancement">Issues</a></h1> |
|||
|
|||
<a href="http://danielgibbs.co.uk/scripts"><img src="http://danielgibbs.co.uk/wp-content/uploads/2014/02/linux-game-server-manager-full.png" alt="linux game server manager" width="600" /></a> |
|||
<h1>Linux Game Server Managers_ <a href="http://wiki.gameservermanagers.com/wiki/Getting_Started">Install</a></h1> |
|||
<a href="http://gameservermanagers.com"><img src="http://wiki.gameservermanagers.com/w//images/9/9d/Lgsm_full-2.png" alt="linux Game Server Managers" width="600" /></a> |
|||
|
|||
The Linux Game Server Managers are command line tools for quick, simple deployment and management of various dedicated game servers and voice comms servers. |
|||
|
|||
<h2>Main features</h2> |
|||
|
|||
<ul> |
|||
<li>Server installer (SteamCMD).</li> |
|||
<li>Start/Stop/Restart server.</li> |
|||
<li>Server update (SteamCMD).</li> |
|||
<li>Server monitor (including email notification).</li> |
|||
<li>Server backup.</li> |
|||
<li>Server console.</li> |
|||
<li>Backup</li> |
|||
<li>Console</li> |
|||
<li>Details</li> |
|||
<li>Installer (SteamCMD)</li> |
|||
<li>Monitor (including email notification)</li> |
|||
<li>Update (SteamCMD)</li> |
|||
<li>Start/Stop/Restart server</li> |
|||
</ul> |
|||
<h2>Compatibility</h2> |
|||
The Linux Game Server Manager is tested to work on the following Linux systems. |
|||
The Linux Game Server Managers are tested to work on the following Linux distros. |
|||
<ul> |
|||
<li>Debian based distros (Ubuntu, Mint etc.).</li> |
|||
<li>Redhat based distros (CentOS, Fedora etc.).</li> |
|||
<li>Debian based (Ubuntu, Mint etc.).</li> |
|||
<li>Redhat based (CentOS, Fedora etc.).</li> |
|||
</ul> |
|||
Other distros are likely to work but are not fully tested. |
|||
<h3>Specific Requirements</h3> |
|||
<ul> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Glibc">GLIBC</a> >= 2.15 recommended [<a href="http://wiki.gameservermanagers.com/wiki/Glibc#Server_Requirements">specific requirements</a>].</li> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Tmux">Tmux</a> >= 1.6 recommended (Avoid Tmux 1.8).</li> |
|||
</ul> |
|||
The scripts are written in BASH and Python and would probably work with other distros. |
|||
|
|||
<h2>"I've found a bug", "Something isn't working for me"</h2> |
|||
Before submitting an issue about a script error, try deleting the "functions" folder located where the script is. (ie. /home/tf2/tf2server would be /home/tf2/functions) |
|||
This will grab the latest scripts from the repository meaning that if we've already fixed the bug you would be asking about, you'd get the patch that way. |
|||
|
|||
<h2>FAQ</h2> |
|||
<strong>Q: How do I install a script on my Linux server?</strong> |
|||
- Full documentation and instructions can be found here. |
|||
<b><a href="http://danielgibbs.co.uk/scripts">http://danielgibbs.co.uk/lgsm</a></b> |
|||
|
|||
<strong>Q: There's a feature that I'd like to see implemented, how can I get it put in?</strong> |
|||
- Create an issue report and we'll tag it as an enhancement, if you are able to program in Bash feel free to send us a pull request, it's much likely to be included as well as faster that way. |
|||
All FAQ can be found here. |
|||
|
|||
<strong>Q: Can you go on my server through SSH and install the server for me?</strong> |
|||
- Unfortunately, no, the scripts are very easy to install and shouldn't require much help in the first place. If there's a error that you're experiencing, send us an issue report. |
|||
<a href="http://wiki.gameservermanagers.com/wiki/FAQ">http://wiki.gameservermanagers.com/wiki/FAQ</a> |
|||
<h2>Donate</h2> |
|||
If you want to donate to the project you can via PayPal, Flattr or Gratipay. I have had a may kind people show there support by sending me a donation. Any donations you send help cover my server costs and buy me a drink. Cheers! |
|||
<ul> |
|||
<li><a href="http://gameservermanagers.com/#donate">Donate</a></li> |
|||
</ul> |
|||
<h2>Useful Links</h2> |
|||
<ul> |
|||
<li><a href="http://gameservermanagers.com">Homepage</li> |
|||
<li><a href="http://gameservermanagers.com">Wiki</li> |
|||
<li><a href="https://github.com/dgibbs64/linuxgsm">GitHub Code</li> |
|||
<li><a href="https://github.com/dgibbs64/linuxgsm/issues">GitHub Issues</li> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Getting_Started">Steam Group</li> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Getting_Started">Twitter</li> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Getting_Started">Facebook</li> |
|||
<li><a href="http://wiki.gameservermanagers.com/wiki/Getting_Started">Google+</li> |
|||
</ul> |
|||
|
@ -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,97 @@ |
|||
#!/bin/bash |
|||
# Ricochet |
|||
# Server Management Script |
|||
# Author: Daniel Gibbs |
|||
# Website: http://danielgibbs.co.uk |
|||
# Version: 210115 |
|||
|
|||
#### Variables #### |
|||
|
|||
# Notification Email |
|||
# (on|off) |
|||
emailnotification="off" |
|||
email="[email protected]" |
|||
|
|||
# Steam login |
|||
steamuser="anonymous" |
|||
steampass="" |
|||
|
|||
# Start Variables |
|||
defaultmap="rc_arena" |
|||
maxplayers="16" |
|||
port="27015" |
|||
clientport="27005" |
|||
ip="0.0.0.0" |
|||
|
|||
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Command-line_parameters_2 |
|||
fn_parms(){ |
|||
parms="-game ricochet -strictportbind -ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} -maxplayers ${maxplayers}" |
|||
} |
|||
|
|||
#### Advanced Variables #### |
|||
|
|||
# Steam |
|||
appid="90 +app_set_config 90 mod ricochet" |
|||
|
|||
# Server Details |
|||
servicename="ricochet-server" |
|||
gamename="Ricochet" |
|||
engine="goldsource" |
|||
|
|||
# Directories |
|||
rootdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
|||
selfname="$(basename $0)" |
|||
lockselfname=".${servicename}.lock" |
|||
filesdir="${rootdir}/serverfiles" |
|||
systemdir="${filesdir}/ricochet" |
|||
executabledir="${filesdir}" |
|||
executable="./hlds_run" |
|||
servercfgdir="${systemdir}" |
|||
servercfg="${servicename}.cfg" |
|||
servercfgfullpath="${servercfgdir}/${servercfg}" |
|||
defaultcfg="${servercfgdir}/server.cfg" |
|||
backupdir="${rootdir}/backups" |
|||
|
|||
# Logging |
|||
logdays="7" |
|||
gamelogdir="${systemdir}/logs" |
|||
scriptlogdir="${rootdir}/log/script" |
|||
consolelogdir="${rootdir}/log/console" |
|||
|
|||
scriptlog="${scriptlogdir}/${servicename}-script.log" |
|||
consolelog="${consolelogdir}/${servicename}-console.log" |
|||
emaillog="${scriptlogdir}/${servicename}-email.log" |
|||
|
|||
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%d-%m-%Y-%H-%M-%S').log" |
|||
|
|||
##### Script ##### |
|||
# Do not edit |
|||
|
|||
fn_runfunction(){ |
|||
# Functions are downloaded and run with this function |
|||
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then |
|||
cd "${rootdir}" |
|||
if [ ! -d "functions" ]; then |
|||
mkdir functions |
|||
fi |
|||
cd functions |
|||
echo -e "loading ${functionfile}...\c" |
|||
wget -N --no-check-certificate /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45- |
|||
chmod +x "${functionfile}" |
|||
cd "${rootdir}" |
|||
sleep 1 |
|||
fi |
|||
source "${rootdir}/functions/${functionfile}" |
|||
} |
|||
|
|||
fn_functions(){ |
|||
# Functions are defined in fn_functions. |
|||
functionfile="${FUNCNAME}" |
|||
fn_runfunction |
|||
} |
|||
|
|||
fn_functions |
|||
|
|||
getopt=$1 |
|||
fn_getopt |
Loading…
Reference in new issue