Daniel Gibbs 9 лет назад
Родитель
Сommit
710d8f6a09

BIN
DontStarveTogether/dependencies/libc.so.6


BIN
DontStarveTogether/dependencies/libpthread.so.0


BIN
DontStarveTogether/dependencies/librt.so.1


+ 0 - 39
DontStarveTogether/lgsm-default.ini

@@ -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

BIN
DoubleActionBoogaloo/dependencies/libm.so.6


BIN
Insurgency/dependencies/libc.so.6


BIN
Insurgency/dependencies/libm.so.6


BIN
Insurgency/dependencies/librt.so.1


+ 0 - 21
lgsm/functions/check_tmux.sh

@@ -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