3 changed files with 38 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||
|
#!/bin/bash |
||||
|
# LinuxGSM fix_pz.sh function |
||||
|
# Author: Christian Birk |
||||
|
# Website: https://linuxgsm.com |
||||
|
# Description: Resolves various issues with Project Zomboid. |
||||
|
|
||||
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
||||
|
|
||||
|
if [ "${shortname}" == "pz" ]; then |
||||
|
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so. |
||||
|
if [ ! -f "${serverfiles}/linux32/steamclient.so" ]; then |
||||
|
fixname="steamclient.so x86" |
||||
|
fn_fix_msg_start |
||||
|
if [ -f "${HOME}/.steam/steamcmd/linux32/steamclient.so" ]; then |
||||
|
cp "${steamcmddir}/linux32/steamclient.so" "${serverfiles}/linux32/steamclient.so" >> "${lgsmlog}" |
||||
|
elif [ -f "${steamcmddir}/linux32/steamclient.so" ]; then |
||||
|
cp "${steamcmddir}/linux32/steamclient.so" "${serverfiles}/linux32/steamclient.so" >> "${lgsmlog}" |
||||
|
fi |
||||
|
fn_fix_msg_end |
||||
|
fi |
||||
|
if [ ! -f "${serverfiles}/linux64/steamclient.so" ]; then |
||||
|
fixname="steamclient.so x86_64" |
||||
|
fn_fix_msg_start |
||||
|
if [ -f "${HOME}/.steam/steamcmd/linux64/steamclient.so" ]; then |
||||
|
cp "${steamcmddir}/linux64/steamclient.so" "${serverfiles}/linux64/steamclient.so" >> "${lgsmlog}" |
||||
|
elif [ -f "${steamcmddir}/linux64/steamclient.so" ]; then |
||||
|
cp "${steamcmddir}/linux64/steamclient.so" "${serverfiles}/linux64/steamclient.so" >> "${lgsmlog}" |
||||
|
fi |
||||
|
fn_fix_msg_end |
||||
|
fi |
||||
|
fi |
Loading…
Reference in new issue