http://store.steampowered.com/app/225840/Sven_Coop/

That would be a lot of money just for a 5 man server. just saying.TacTicToe wrote:While it certainly does meet all the requirements for NFO hosting, it unfortunately is not in very high demand. It is unlikely NFO would spend the time and resources setting this up in their system for this reason. You would be better off buying an unmanaged VDS for yourself and hosting that way.
Hosting with the best high end GSP that has incredible 24/7 support, you're getting what you pay for.savemgs wrote:That would be a lot of money just for a 5 man server. just saying.
How do i set it up?TacTicToe wrote:Hosting with the best high end GSP that has incredible 24/7 support, you're getting what you pay for.savemgs wrote:That would be a lot of money just for a 5 man server. just saying.
Just sayin...
http://www.svencoop.com/manual/server-basic.htmlsavemgs wrote:How do i set it up?TacTicToe wrote:Hosting with the best high end GSP that has incredible 24/7 support, you're getting what you pay for.savemgs wrote:That would be a lot of money just for a 5 man server. just saying.
Just sayin...
Code: Select all
## Server Start Settings | https://docs.linuxgsm.com/configuration/start-parameters
ip="SERVER_IP_HERE"
port="27015"
clientport="27015"
defaultmap="svencoop1"
maxplayers="16"
## Server Start Command | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
fn_parms(){
parms="-game svencoop -strictportbind +ip ${ip} -port ${port} +clientport ${clientport} +map ${defaultmap} +servercfgfile ${servercfg} +maxplayers ${maxplayers}"
}
Code: Select all
//----------------------------------------------
// Sven Co-op v5.0 Default Server CFG
//----------------------------------------------
//----------------------------------------------
// See server_example.cfg for more available
// commands and settings.
//----------------------------------------------
hostname "server_name_here"
log "on"
rcon_password "admin_password_here"
sv_password "test"
sv_downloadurl "fast_dl_link"
mp_survival_mode 0
sys_ticrate 100
deathmatch 1
decalfrequency 30
hpk_maxsize 2
pausable 0
sv_aim 0
sv_allowdownload 1
sv_allowupload 1
sv_region 255
sv_send_resources 1
sv_voicecodec "voice_speex"
sv_voiceenable 1
sv_voicequality 5
mp_telefrag 1
mp_timelimit 99
mp_weaponstay 1
exec banned.cfg
exec listip.cfg
Code: Select all
#Check Server Every 15 Minutes, restart if down
*/15 * * * * su - user_name -c '/home/user_name/svenserver monitor' > /dev/null 2>&1
#Check For update every hour
#0 * * * * su - user_name -c '/home/user_name/svenserver update' > /dev/null 2>&1
#Restart at 6:30 AM, update if needed
30 6 * * * su - user_name -c '/home/user_name/svenserver force-update' > /dev/null 2>&1
#Restart on machine reboot
@reboot su - user_name -c '/home/user_name/svenserver monitor' > /dev/null 2>&1