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.
37 lines
1.1 KiB
37 lines
1.1 KiB
#!/bin/bash
|
|
# LGSM install_gslt.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="270216"
|
|
|
|
# Description: Configures GSLT.
|
|
|
|
local modulename="Install"
|
|
|
|
echo ""
|
|
echo "Game Server Login Token"
|
|
echo "============================"
|
|
sleep 1
|
|
if [ "${gamename}" == "Counter Strike: Global Offensive" ]; then
|
|
echo "GSLT is required to run a public ${gamename} server"
|
|
fn_scriptlog "GSLT is required to run a public ${gamename} server"
|
|
else
|
|
echo "GSLT is an optional feature for ${gamename} server"
|
|
fn_scriptlog "GSLT is an optional feature for ${gamename} server"
|
|
fi
|
|
|
|
echo "Get more info and a token here:"
|
|
echo "http://gameservermanagers.com/gslt"
|
|
fn_scriptlog "Get more info and a token here:"
|
|
fn_scriptlog "http://gameservermanagers.com/gslt"
|
|
echo ""
|
|
if [ -z "${autoinstall}" ]; then
|
|
echo "Enter token below (Can be blank)."
|
|
echo -n "GSLT TOKEN: "
|
|
read token
|
|
sed -i -e "s/gslt=\"\"/gslt=\"${token}\"/g" "${rootdir}/${selfname}"
|
|
fi
|
|
sleep 1
|
|
echo "The GSLT can be changed by editing ${selfname}."
|
|
fn_scriptlog "The GSLT can be changed by editing ${selfname}."
|
|
echo ""
|