From df7fe2944211cbbe080663675ae0c5f778c5305d Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Tue, 22 Dec 2015 04:13:07 +0100 Subject: [PATCH] renamed addadmins to admins, save to loadsave, changed comments --- Hurtworld/hwserver | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Hurtworld/hwserver b/Hurtworld/hwserver index 6a01aabfb..433e05619 100644 --- a/Hurtworld/hwserver +++ b/Hurtworld/hwserver @@ -31,23 +31,21 @@ queryport="12881" maxplayers="20" map="" #Optional creativemode="0" #Free Build +logfile="gamelog.txt" -# Adding first admins -# Syntax : addadmin STEAMID64; addadmin STEAMID64-bis -# Example : addadmin="addadmin 012345678901234567; addadmin 987654321098765432" -addadmin="" +# Adding admins using STEAMID64 +# Example : admins="addadmin 012345678901234567; addadmin 987654321098765432" +admins="" -# Maintenance settings -logfile="gamelog.txt" +# Advanced +# Rollback server state (remove after start command) loadsave="" - -# EXPERIMENTAL ! Use at your own risk -# Setting this to 1 runs the server with the x64 bits exectutable +# Use unstable 64 bit server executable (O/1) x64mode="0" # http://hurtworld.wikia.com/wiki/Hosting_A_Server fn_parms(){ -parms="-batchmode -nographics -exec \"host ${port} ${map} ${save};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${addadmin}\" -logfile \"${logfile}\" " +parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${admins}\" -logfile \"${logfile}\" " } #### Advanced Variables ####