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.
23 lines
677 B
23 lines
677 B
#!/bin/bash
|
|
# LGSM fn_check_steamuser function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="061115"
|
|
|
|
if [ "${steamuser}" == "username" ]; then
|
|
fn_printfailnl "Steam login not set. Update steamuser."
|
|
echo " * Change steamuser=\"username\" to a valid steam login."
|
|
if [ -d ${scriptlogdir} ]; then
|
|
fn_scriptlog "edit ${selfname}. change steamuser=\"username\" to a valid steam login."
|
|
exit 1
|
|
fi
|
|
fi
|
|
if [ -z "${steamuser}" ]; then
|
|
fn_printwarnnl "Steam login not set. Using anonymous login."
|
|
if [ -d ${scriptlogdir} ]; then
|
|
fn_scriptlog "Steam login not set. Using anonymous login."
|
|
fi
|
|
steamuser="anonymous"
|
|
steampass=""
|
|
sleep 2
|
|
fi
|
|
|