From 46a812604ff18063ee1472906930ff85fb31ebc5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sun, 20 Dec 2015 19:17:09 +0000 Subject: [PATCH] added fn_arma3fix --- functions/fn_arma3fix | 11 +++++++++++ functions/fn_debug | 7 ++++++- functions/fn_functions | 5 +++++ functions/fn_insfix | 6 ++++-- functions/fn_start | 2 ++ 5 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 functions/fn_arma3fix diff --git a/functions/fn_arma3fix b/functions/fn_arma3fix new file mode 100644 index 000000000..da2d69bde --- /dev/null +++ b/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 diff --git a/functions/fn_debug b/functions/fn_debug index b593f0415..cb4067943 100644 --- a/functions/fn_debug +++ b/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 diff --git a/functions/fn_functions b/functions/fn_functions index a22de6a94..c477ede05 100644 --- a/functions/fn_functions +++ b/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 diff --git a/functions/fn_insfix b/functions/fn_insfix index 8a583078c..9d8c0041d 100644 --- a/functions/fn_insfix +++ b/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} diff --git a/functions/fn_start b/functions/fn_start index a20ff27f1..742c76b60 100644 --- a/functions/fn_start +++ b/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