Daniel Gibbs
1 year ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
2 changed files with
10 additions and
5 deletions
-
lgsm/config-default/config-lgsm/smserver/_default.cfg
-
lgsm/modules/info_messages.sh
|
|
@ -12,11 +12,11 @@ |
|
|
|
servername="LinuxGSM" |
|
|
|
serverpassword="" |
|
|
|
adminpassword="" |
|
|
|
port=8777 |
|
|
|
queryport=27015 |
|
|
|
telnetport=18888 |
|
|
|
maxplayers=50 |
|
|
|
backupinterval=15 # in min |
|
|
|
port="8777" |
|
|
|
queryport="27015" |
|
|
|
telnetport="18888" |
|
|
|
maxplayers="50" |
|
|
|
backupinterval="15" # in min |
|
|
|
defaultmap="Level01_Main" |
|
|
|
|
|
|
|
## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters |
|
|
|
|
|
@ -483,6 +483,11 @@ fn_info_messages_gameserver() { |
|
|
|
echo -e "${lightblue}Version Count:\t${default}${versioncount}" |
|
|
|
fi |
|
|
|
|
|
|
|
# backupinterval (Soulmask) |
|
|
|
if [ -n "${backupinterval}" ]; then |
|
|
|
echo -e "${lightblue}Backup Interval:\t${default}${backupinterval}" |
|
|
|
fi |
|
|
|
|
|
|
|
# Listed on Master server |
|
|
|
if [ -n "${displaymasterserver}" ]; then |
|
|
|
if [ "${displaymasterserver}" == "true" ]; then |
|
|
|