Browse Source

renamed addadmins to admins, save to loadsave, changed comments

pull/573/head^2
UltimateByte 9 years ago
parent
commit
df7fe29442
  1. 18
      Hurtworld/hwserver

18
Hurtworld/hwserver

@ -31,23 +31,21 @@ queryport="12881"
maxplayers="20" maxplayers="20"
map="" #Optional map="" #Optional
creativemode="0" #Free Build creativemode="0" #Free Build
logfile="gamelog.txt"
# Adding first admins # Adding admins using STEAMID64
# Syntax : addadmin STEAMID64; addadmin STEAMID64-bis # Example : admins="addadmin 012345678901234567; addadmin 987654321098765432"
# Example : addadmin="addadmin 012345678901234567; addadmin 987654321098765432" admins=""
addadmin=""
# Maintenance settings # Advanced
logfile="gamelog.txt" # Rollback server state (remove after start command)
loadsave="" loadsave=""
# Use unstable 64 bit server executable (O/1)
# EXPERIMENTAL ! Use at your own risk
# Setting this to 1 runs the server with the x64 bits exectutable
x64mode="0" 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};${addadmin}\" -logfile \"${logfile}\" " parms="-batchmode -nographics -exec \"host ${port} ${map} ${loadsave};queryport ${queryport};maxplayers ${maxplayers};servername ${servername};creativemode ${creativemode};${admins}\" -logfile \"${logfile}\" "
} }
#### Advanced Variables #### #### Advanced Variables ####

Loading…
Cancel
Save