9 changed files with 0 additions and 60 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,39 +0,0 @@ |
|||||
[network] |
|
||||
default_server_name = dstserver |
|
||||
default_server_description = Welcome to dstserver |
|
||||
server_port = 10999 |
|
||||
server_password = password |
|
||||
|
|
||||
# max_players = 1 .. 64 |
|
||||
max_players = 16 |
|
||||
|
|
||||
# pvp = true | false |
|
||||
pvp = false |
|
||||
|
|
||||
# game_mode = endless | survival | wilderness |
|
||||
game_mode = endless |
|
||||
|
|
||||
# enable_autosaver = true | false |
|
||||
enable_autosaver = true |
|
||||
|
|
||||
# tick_rate = [ 10 | 15 | 30 | 60 ] |
|
||||
tick_rate = 30 |
|
||||
|
|
||||
connection_timeout = 8000 |
|
||||
server_save_slot = 1 |
|
||||
|
|
||||
# enable_vote_kick = true | false |
|
||||
enable_vote_kick = true |
|
||||
|
|
||||
# pause_when_empty = true | false |
|
||||
pause_when_empty = true |
|
||||
|
|
||||
[account] |
|
||||
dedicated_lan_server = false |
|
||||
|
|
||||
[STEAM] |
|
||||
DISABLECLOUD = true |
|
||||
|
|
||||
[MISC] |
|
||||
CONSOLE_ENABLED = true |
|
||||
autocompiler_enabled = true |
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,21 +0,0 @@ |
|||||
#!/bin/bash |
|
||||
# LGSM check_tmux.sh function |
|
||||
# Author: Daniel Gibbs |
|
||||
# Website: https://gameservermanagers.com |
|
||||
# Description: Checks if tmux is installed as too many users do not RTFM or know how to use Google. |
|
||||
|
|
||||
local commandname="CHECK" |
|
||||
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" |
|
||||
|
|
||||
if [ "$(command -v tmux)" ]||[ "$(which tmux >/dev/null 2>&1)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then |
|
||||
: |
|
||||
else |
|
||||
fn_print_fail_nl "Tmux not installed" |
|
||||
sleep 1 |
|
||||
fn_script_log_fatal "Tmux is not installed" |
|
||||
echo " * Tmux is required to run this server." |
|
||||
# Suitable passive agressive message |
|
||||
echo " * Please see the the following link." |
|
||||
echo " * https://gameservermanagers.com/tmux-not-found" |
|
||||
core_exit.sh |
|
||||
fi |
|
Loading…
Reference in new issue