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.
41 lines
1.7 KiB
41 lines
1.7 KiB
#!/bin/bash
|
|
# LGSM fix_steamcmd.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="210516"
|
|
|
|
# Description: fixes various issues related to steamCMD.
|
|
|
|
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam,or a local steamclient.so.
|
|
if [ ! -f "${HOME}/.steam/sdk32/steamclient.so" ]; then
|
|
fixname="steamclient.so general"
|
|
fn_fix_msg_start
|
|
mkdir -pv "${HOME}/.steam/sdk32" >> "${scriptlog}"
|
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${HOME}/.steam/sdk32/steamclient.so" >> "${scriptlog}"
|
|
fn_fix_msg_end
|
|
fi
|
|
|
|
if [ "${gamename}" == "Serious Sam 3: BFE" ]; then
|
|
# Fixes: .steam/bin32/libsteam.so: cannot open shared object file: No such file or directory
|
|
if [ ! -f "${HOME}/.steam/bin32/libsteam.so" ]; then
|
|
fixname="libsteam.so"
|
|
fn_fix_msg_start
|
|
mkdir -pv "${HOME}/.steam/bin32" >> "${scriptlog}"
|
|
cp -v "${filesdir}/Bin/libsteam.so" "${HOME}/.steam/bin32/libsteam.so" >> "${scriptlog}"
|
|
fn_fix_msg_end
|
|
fi
|
|
elif [ "${gamename}" == "Hurtworld" ]; then
|
|
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.
|
|
if [ ! -f "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" ]; then
|
|
fixname="steamclient.so x86"
|
|
fn_fix_msg_start
|
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86/steamclient.so" >> "${scriptlog}"
|
|
fn_fix_msg_end
|
|
fi
|
|
if [ ! -f "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" ]; then
|
|
fixname="steamclient.so x86_64"
|
|
fn_fix_msg_start
|
|
cp -v "${rootdir}/steamcmd/linux32/steamclient.so" "${filesdir}/Hurtworld_Data/Plugins/x86_64/steamclient.so" >> "${scriptlog}"
|
|
fn_fix_msg_end
|
|
fi
|
|
fi
|
|
|