Browse Source

added fn_arma3fix

pull/575/head
Daniel Gibbs 9 years ago
parent
commit
46a812604f
  1. 11
      functions/fn_arma3fix
  2. 7
      functions/fn_debug
  3. 5
      functions/fn_functions
  4. 6
      functions/fn_insfix
  5. 2
      functions/fn_start

11
functions/fn_arma3fix

@ -0,0 +1,11 @@
#!/bin/bash
# LGSM fn_arma3fix function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="201215"
# Fixes line 63: 20150 Segmentation fault (core dumped) #488
if [ -d "${rootdir}/.local/share/Arma\ 3"]; then
mkdir -p "${rootdir}/.local/share/Arma\ 3"
fi

7
functions/fn_debug

@ -54,8 +54,13 @@ sleep 1
echo -en "\n"
cd "${executabledir}"
if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then
if [ "${gamename}" == "Insurgency" ]; then
if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
startfix=1
fn_csgofix
elif [ "${gamename}" == "Insurgency" ]; then
fn_insfix
elif [ "${gamename}" == "ARMA 3" ]; then
fn_arma3fix
fi
${executable} ${parms} -debug
else

5
functions/fn_functions

@ -7,6 +7,11 @@ lgsm_version="061115"
# Description: Defines all functions to allow download and execution of functions using fn_runfunction.
# This function is called first before any other function. Without this file other functions would not load.
fn_arma3fix(){
functionfile="${FUNCNAME}"
fn_runfunction
}
fn_backup(){
functionfile="${FUNCNAME}"
fn_runfunction

6
functions/fn_insfix

@ -2,9 +2,11 @@
# LGSM fn_insfix function
# Author: Daniel Gibbs
# Website: http://gameservermanagers.com
lgsm_version="110415"
lgsm_version="201215"
# Description: Resolves ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory
# Description: Resolves various issues with Insurgency.
# Resolves ./srcds_linux: error while loading shared libraries: libtier0.so: cannot open shared object file: No such file or directory
export LD_LIBRARY_PATH=:${filesdir}:${filesdir}/bin:{$LD_LIBRARY_PATH}

2
functions/fn_start

@ -82,6 +82,8 @@ if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
fn_csgofix
elif [ "${gamename}" == "Insurgency" ]; then
fn_insfix
elif [ "${gamename}" == "ARMA 3" ]; then
fn_arma3fix
fi
fn_details_config

Loading…
Cancel
Save