fix_lo.sh 508 B

1234567891011121314151617
  1. #!/bin/bash
  2. # LinuxGSM fix_lo.sh module
  3. # Author: Daniel Gibbs
  4. # Website: https://linuxgsm.com
  5. # Description: Resolves various issues with Last Oasis.
  6. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  7. appidfile=${executabledir}/steam_appid.txt
  8. if [ ! -f "${appidfile}" ]; then
  9. fn_print_information "adding ${appidfile} to ${gamename} server."
  10. fn_sleep_time
  11. echo "903950" > "${appidfile}"
  12. else
  13. fn_print_information "${appidfile} already exists. No action to be taken."
  14. fn_sleep_time
  15. fi