1 changed files with 20 additions and 8 deletions
@ -23,23 +23,31 @@ email="[email protected]" |
|||||
steamuser="anonymous" |
steamuser="anonymous" |
||||
steampass="" |
steampass="" |
||||
|
|
||||
# Start Variables |
# Server settings |
||||
servername="Hurtworld LGSM Server" |
servername="Hurtworld LGSM Server" |
||||
ip="0.0.0.0" |
ip="0.0.0.0" |
||||
port="12871" |
port="12871" |
||||
queryport="12881" |
queryport="12881" |
||||
maxplayers="20" |
maxplayers="20" |
||||
map="" |
map="" #Optional |
||||
creativemode="0" #Free Build (0 is off) |
creativemode="0" #Free Build |
||||
updateonstart="off" |
|
||||
|
|
||||
# Maintenance Variables |
# Adding first admins |
||||
loadsave="" |
# Syntax : addadmin STEAMID64; addadmin STEAMID64-bis |
||||
|
# Example : addadmin="addadmin 012345678901234567; addadmin 987654321098765432" |
||||
|
addadmin="" |
||||
|
|
||||
|
# Maintenance settings |
||||
logfile="gamelog.txt" |
logfile="gamelog.txt" |
||||
|
loadsave="" |
||||
|
|
||||
|
# EXPERIMENTAL ! Use at your own risk |
||||
|
# Setting this to 1 runs the server with the x64 bits exectutable |
||||
|
x64mode="0" |
||||
|
|
||||
# http://hurtworld.wikia.com/wiki/Hosting_A_Server |
# http://hurtworld.wikia.com/wiki/Hosting_A_Server |
||||
fn_parms(){ |
fn_parms(){ |
||||
parms="-batchmode -nographics -exec \"host ${port} ${map} ${save};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode}\" -logfile \"${logfile}\" " |
parms="-batchmode -nographics -exec \"host ${port} ${map} ${save};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${addadmin}\" -logfile \"${logfile}\" " |
||||
} |
} |
||||
|
|
||||
#### Advanced Variables #### |
#### Advanced Variables #### |
||||
@ -66,7 +74,11 @@ lockselfname=".${servicename}.lock" |
|||||
filesdir="${rootdir}/serverfiles" |
filesdir="${rootdir}/serverfiles" |
||||
systemdir="${filesdir}" |
systemdir="${filesdir}" |
||||
executabledir="${filesdir}" |
executabledir="${filesdir}" |
||||
executable="./Hurtworld.x86" |
if [ "${x64mode}" == "1" ]; then |
||||
|
executable="./Hurtworld.x86_64" |
||||
|
else |
||||
|
executable="./Hurtworld.x86" |
||||
|
fi |
||||
backupdir="${rootdir}/backups" |
backupdir="${rootdir}/backups" |
||||
|
|
||||
# Logging |
# Logging |
||||
|
Loading…
Reference in new issue