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.
21 lines
471 B
21 lines
471 B
#!/bin/bash
|
|
# LGSM fix.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="291215"
|
|
|
|
# Description: Overall function for managing fixes.
|
|
# Runs functions that will fix an issue.
|
|
|
|
if [ ! -z "${appid}" ]; then
|
|
fix_steamcmd.sh
|
|
fi
|
|
|
|
if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
|
|
startfix=1
|
|
fix_csgo.sh
|
|
elif [ "${gamename}" == "Insurgency" ]; then
|
|
fix_ins.sh
|
|
elif [ "${gamename}" == "ARMA 3" ]; then
|
|
fix_arma3.sh
|
|
fi
|