gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
984 B
33 lines
984 B
#!/bin/bash
|
|
# LinuxGSM fix_cmw.sh function
|
|
# Author: Christian Birk
|
|
# Website: https://linuxgsm.com
|
|
# Description: Resolves the issue of the not starting server on linux
|
|
|
|
fixname="steam_appid.txt"
|
|
|
|
if [ ! -f "${executabledir}/steam_appid.txt" ]; then
|
|
fn_fix_msg_start
|
|
echo 219640 > "${executabledir}/steam_appid.txt"
|
|
fn_fix_msg_end
|
|
fi
|
|
|
|
if [ ! -f "${executabledir}/lib/steamclient.so" ]; then
|
|
fixname="steamclient.so x86"
|
|
fn_fix_msg_start
|
|
mkdir -p "${executabledir}/lib"
|
|
if [ -f "${HOME}/.steam/steamcmd/linux32/steamclient.so" ]; then
|
|
cp "${HOME}/.steam/steamcmd/linux32/steamclient.so" "${executabledir}/lib/steamclient.so"
|
|
elif [ -f "${steamcmddir}/linux32/steamclient.so" ]; then
|
|
cp "${steamcmddir}/linux32/steamclient.so" "${executabledir}/lib/steamclient.so"
|
|
fi
|
|
fn_fix_msg_end
|
|
fi
|
|
|
|
if [ ! -f "${servercfgfullpath}" ]; then
|
|
fn_fix_msg_start
|
|
fixname="copy config"
|
|
mkdir "${servercfgdir}"
|
|
cp "${systemdir}/UDKGame/Config/"*.ini "${servercfgdir}"
|
|
fn_fix_msg_end
|
|
fi
|
|
|