More work on the new dialogue system. Game installers updated.
This commit is contained in:
@ -1,3 +1,3 @@
|
|||||||
check_dependencies git sox tt++
|
check_dependencies git sox tt++
|
||||||
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-alteraeon.git | \
|
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-alteraeon.git | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
check_dependencies git sox tt++
|
check_dependencies git sox tt++
|
||||||
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-empiremud.git | \
|
git -C "${installPath}/" clone --recurse-submodules https://github.com/lilmike/tintin-empiremud.git | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
check_dependencies git opusdec sox tt++
|
check_dependencies git opusdec sox tt++
|
||||||
git -C "${installPath}/" clone https://git.2mb.codes/~stormdragon2976/tintin-endoftime | \
|
git -C "${installPath}/" clone https://git.2mb.codes/~stormdragon2976/tintin-endoftime | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -2,8 +2,7 @@ tobyVersion="8-0"
|
|||||||
mkdir -p "${installPath}/doom"
|
mkdir -p "${installPath}/doom"
|
||||||
doomPath="$(find /usr/share -type d -name "doom" 2> /dev/null)"
|
doomPath="$(find /usr/share -type d -name "doom" 2> /dev/null)"
|
||||||
if [[ ${#doomPath} -lt 5 ]]; then
|
if [[ ${#doomPath} -lt 5 ]]; then
|
||||||
dialog --backtitle "Linux Game Manager" \
|
ui_yesno "Linux Game Manager" "Linux Game Manager" "Do you want Linux Game Manager to install freedoom and gzdoom for you? If you want to do this manually, select no." || exit 0
|
||||||
--yesno "Do you want Linux Game Manager to install freedoom and gzdoom for you? If you want to do this manually, select no." -1 -1 --stdout || exit 0
|
|
||||||
if command -v yay &> /dev/null ; then
|
if command -v yay &> /dev/null ; then
|
||||||
yay -Sy --noconfirm --sudoloop freedoom gzdoom freedm blasphemer-wad
|
yay -Sy --noconfirm --sudoloop freedoom gzdoom freedm blasphemer-wad
|
||||||
elif command -v slapt-src &> /dev/null ; then
|
elif command -v slapt-src &> /dev/null ; then
|
||||||
@ -13,27 +12,22 @@ if [[ ${#doomPath} -lt 5 ]]; then
|
|||||||
sudo dnf -q -y install freedoom
|
sudo dnf -q -y install freedoom
|
||||||
sudo dnf -q -y install gzdoom
|
sudo dnf -q -y install gzdoom
|
||||||
else
|
else
|
||||||
dialog --backtitle "Linux Game Manager" --msgbox "No supported package managers found. Please install the freedoom and gzdoom packages manually." -1 -1
|
ui_msgbox "Linux Game Manager" "Linux Game Manager" "No supported package managers found. Please install the freedoom and gzdoom packages manually."
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
doomPath="$(find /usr/share -type d -name "doom" 2> /dev/null | head -1)"
|
doomPath="$(find /usr/share -type d -name "doom" 2> /dev/null | head -1)"
|
||||||
if ! [[ -e "${installPath}/doom/DoomMetalVol6.wad" ]] && ! [[ -e "${installPath}/doom/DoomMetalVol7.wad" ]]; then
|
if ! [[ -e "${installPath}/doom/DoomMetalVol6.wad" ]] && ! [[ -e "${installPath}/doom/DoomMetalVol7.wad" ]]; then
|
||||||
alert
|
alert
|
||||||
dialog --backtitle "Linux Game manager" \
|
choice=$(ui_menu "Doom Metal Selection" "Doom Metal Selection" "Would you like Doom Metal Volume 6 or 7?" "6" "Doom Metal Volume 6" "7" "Doom Metal Volume 7" "none" "None")
|
||||||
--extra-button \
|
case "$choice" in
|
||||||
--yes-label "6" \
|
"6")
|
||||||
--no-label "7" \
|
|
||||||
--extra-label "None" \
|
|
||||||
--yesno "Would you like Doom Metal Volume 6 or 7? Use arrow keys to select your answer." \
|
|
||||||
-1 -1 --stdout
|
|
||||||
buttonCode=$?
|
|
||||||
if [[ $buttonCode -eq 0 ]]; then
|
|
||||||
download "${ipfsGateway}/ipfs/QmSzWKtP3wPvzn5GNd9F7n4RAhkFHxh2UHxXGefiAufwQW?filename=DoomMetalVol6.wad"
|
download "${ipfsGateway}/ipfs/QmSzWKtP3wPvzn5GNd9F7n4RAhkFHxh2UHxXGefiAufwQW?filename=DoomMetalVol6.wad"
|
||||||
fi
|
;;
|
||||||
if [[ $buttonCode -eq 1 ]]; then
|
"7")
|
||||||
download "${ipfsGateway}/ipfs/QmfXkz3tzicKGfhcYSiWUZkjkDKP2aVp53Y49n127wMr7D?filename=DoomMetalVol7.wad"
|
download "${ipfsGateway}/ipfs/QmfXkz3tzicKGfhcYSiWUZkjkDKP2aVp53Y49n127wMr7D?filename=DoomMetalVol7.wad"
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
# The url breaks the normal download function
|
# The url breaks the normal download function
|
||||||
download_named "keyshare-universal.pk3" "https://forum.zdoom.org/download/file.php?id=42262"
|
download_named "keyshare-universal.pk3" "https://forum.zdoom.org/download/file.php?id=42262"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
check_dependencies git sox tt++
|
check_dependencies git sox tt++
|
||||||
git -C "${installPath}/" clone --recurse-submodules https://github.com:hjozwiak/tintin-kallisti-pack | \
|
git -C "${installPath}/" clone --recurse-submodules https://github.com:hjozwiak/tintin-kallisti-pack | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -1,24 +1,21 @@
|
|||||||
check_architecture x86_64
|
check_architecture x86_64
|
||||||
alert
|
alert
|
||||||
dialog --backtitle "Linux Game manager" \
|
ui_msgbox "Game Installer" "Game Installer" "Please note this requires the game to be available either in your Steam library or as the installer purchased from gog.com.\n\nIf using the gog.com installer, please use the default path when prompted."
|
||||||
--msgbox \
|
installMethod=$(ui_menu "Installation Method" "Installation Method" "Select installation method" "gog" "GOG" "steam" "Steam")
|
||||||
"Please note this requires the game to be available either in your Steam library\nor as the installer purchased from gog.com.\nIf using the gog.com installer, please use the default path when prompted." -1 -1 --stdout
|
if [[ "$installMethod" == "steam" ]]; then
|
||||||
dialog --backtitle "Linux Game Manager" \
|
installationMethod=1
|
||||||
--yes-label "GOG" \
|
else
|
||||||
--no-label "Steam" \
|
installationMethod=0
|
||||||
--yesno "Select installation method" -1 -1 --stdout
|
fi
|
||||||
installationMethod=$?
|
|
||||||
appId="646570"
|
appId="646570"
|
||||||
gogFileName="slay_the_spire_2020_12_15_8735c9fe3cc2280b76aa3ec47c953352a7df1f65_43444.sh"
|
gogFileName="slay_the_spire_2020_12_15_8735c9fe3cc2280b76aa3ec47c953352a7df1f65_43444.sh"
|
||||||
if [[ $installMethod -eq 1 ]]; then
|
if [[ $installMethod -eq 1 ]]; then
|
||||||
# Steam Installation
|
# Steam Installation
|
||||||
check_dependencies steamcmd
|
check_dependencies steamcmd
|
||||||
echo "Please enter Steam user name:"
|
steamUser=$(ui_inputbox "Game Installer" "Game Installer" "Please enter Steam user name:" "")
|
||||||
read -er steamUser
|
|
||||||
steamcmd +@sSteamCmdForcePlatformType linux +force_install_dir "${HOME}/.local/games/SlayTheSpire" +login "$steamUser" +app_update "$appId" +quit
|
steamcmd +@sSteamCmdForcePlatformType linux +force_install_dir "${HOME}/.local/games/SlayTheSpire" +login "$steamUser" +app_update "$appId" +quit
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
dialog --backtitle "Linux Game Manager" \
|
ui_msgbox "Game Installer" "Game Installer" "Error installing game through Steam."
|
||||||
--msgbox "Error installing game through Steam." -1 -1 --stdout
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@ -28,20 +25,17 @@ else
|
|||||||
DISPLAY="" find ~/Desktop -maxdepth 1 -type f -name "$gogFileName" -exec bash "{}" \;
|
DISPLAY="" find ~/Desktop -maxdepth 1 -type f -name "$gogFileName" -exec bash "{}" \;
|
||||||
if [[ $? -eq 0 ]]; then
|
if [[ $? -eq 0 ]]; then
|
||||||
ln -sf "${HOME}/GOG Games/Slay the Spire/game" "${installPath}/SlayTheSpire" ||
|
ln -sf "${HOME}/GOG Games/Slay the Spire/game" "${installPath}/SlayTheSpire" ||
|
||||||
{ dialog --backtitle "Linux Game Manager" \
|
{ ui_msgbox "Game Installer" "Game Installer" "Error creating link to game directory."
|
||||||
--msgbox "Error creating link to game directory." -1 -1 --stdout
|
|
||||||
exit 1; }
|
exit 1; }
|
||||||
else
|
else
|
||||||
dialog --backtitle "Linux Game Manager" \
|
ui_msgbox "Game Installer" "Game Installer" "Error installing game from GOG installer."
|
||||||
--msgbox "Error installing game from GOG installer." -1 -1 --stdout
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# Move files into place
|
# Move files into place
|
||||||
mkdir -p "${HOME}/.config/ModTheSpire"
|
mkdir -p "${HOME}/.config/ModTheSpire"
|
||||||
if [[ -f ~"/.config/ModTheSpire/mod_lists.json" ]]; then
|
if [[ -f ~"/.config/ModTheSpire/mod_lists.json" ]]; then
|
||||||
dialog --backtitle "Linux Game manager" \
|
ui_yesno "Game Installer" "Game Installer" "Existing mod_lists.json file found. Would you like to replace it?" &&
|
||||||
--yesno "Existing mod_lists.json file found. Would you like to replace it?" -1 -1 --stdout &&
|
|
||||||
cp -v .files/SlayTheSpire/mod_lists.json "${HOME}/.config/ModTheSpire/mod_lists.json"
|
cp -v .files/SlayTheSpire/mod_lists.json "${HOME}/.config/ModTheSpire/mod_lists.json"
|
||||||
else
|
else
|
||||||
cp -v .files/SlayTheSpire/mod_lists.json "${HOME}/.config/ModTheSpire/mod_lists.json"
|
cp -v .files/SlayTheSpire/mod_lists.json "${HOME}/.config/ModTheSpire/mod_lists.json"
|
||||||
@ -62,8 +56,7 @@ for modId in ${modsMap[@]} ; do
|
|||||||
done
|
done
|
||||||
steamcmd +@sSteamCmdForcePlatformType linux +force_install_dir "${HOME}/.local/games/SlayTheSpire/" +login anonymous $installString +quit
|
steamcmd +@sSteamCmdForcePlatformType linux +force_install_dir "${HOME}/.local/games/SlayTheSpire/" +login anonymous $installString +quit
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
dialog --backtitle "Linux Game Manager" \
|
ui_msgbox "Game Installer" "Game Installer" "Error installing required mods. Some accessibility features may not be available."
|
||||||
--msgbox "Error installing required mods. Some accessibility features may not be available." -1 -1 --stdout
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
mkdir -p "$HOME/.local/games/SlayTheSpire/mods"
|
mkdir -p "$HOME/.local/games/SlayTheSpire/mods"
|
||||||
@ -74,8 +67,7 @@ for modName in "${!modsMap[@]}" ; do
|
|||||||
ln -sr "$HOME/.local/games/SlayTheSpire/steamapps/workshop/content/$appId/${modsMap[$modName]}"/* "$HOME/.local/games/SlayTheSpire/mods/"
|
ln -sr "$HOME/.local/games/SlayTheSpire/steamapps/workshop/content/$appId/${modsMap[$modName]}"/* "$HOME/.local/games/SlayTheSpire/mods/"
|
||||||
fi
|
fi
|
||||||
if [[ $? -ne 0 ]] && [[ "$modName" == "say the spire" ]]; then
|
if [[ $? -ne 0 ]] && [[ "$modName" == "say the spire" ]]; then
|
||||||
dialog --backtitle "Linux Game Manager" \
|
ui_msgbox "Game Installer" "Game Installer" "Error installing SayTheSpire mod. Screen reader support will not be available."
|
||||||
--msgbox "Error installing SayTheSpire mod. Screen reader support will not be available." -1 -1 --stdout
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
check_dependencies python-ansimarkup:ansimarkup
|
check_dependencies python-ansimarkup:ansimarkup
|
||||||
git -C "${installPath}/" clone https://github.com/Difio3333/slaythetext.git | \
|
git -C "${installPath}/" clone https://github.com/Difio3333/slaythetext.git | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -1,18 +1,17 @@
|
|||||||
check_architecture x86_64
|
check_architecture x86_64
|
||||||
DISPLAY=""
|
DISPLAY=""
|
||||||
echo "Please select the default path when prompted by the installer."
|
|
||||||
alert
|
alert
|
||||||
|
ui_msgbox "Game Installer" "Game Installer" "Please select the default path when prompted by the installer."
|
||||||
get_installer "stardew_valley_1_5_6_1988831614_53040.sh" "https://www.gog.com/game/stardew_valley"
|
get_installer "stardew_valley_1_5_6_1988831614_53040.sh" "https://www.gog.com/game/stardew_valley"
|
||||||
bash "${cache}/stardew_valley_1_5_6_1988831614_53040.sh" ||
|
bash "${cache}/stardew_valley_1_5_6_1988831614_53040.sh" ||
|
||||||
{ echo "Error installing game."
|
{ ui_msgbox "Game Installer" "Game Installer" "Error installing game."
|
||||||
exit 1; }
|
exit 1; }
|
||||||
smapiVersion="3.18.4"
|
smapiVersion="3.18.4"
|
||||||
download "https://github.com/Pathoschild/SMAPI/releases/download/${smapiVersion}/SMAPI-${smapiVersion}-installer.zip" "https://stormgames.wolfe.casa/downloads/stardew-valley/Mods.tar.xz"
|
download "https://github.com/Pathoschild/SMAPI/releases/download/${smapiVersion}/SMAPI-${smapiVersion}-installer.zip" "https://stormgames.wolfe.casa/downloads/stardew-valley/Mods.tar.xz"
|
||||||
smapiTmp="$(mktemp -d)"
|
smapiTmp="$(mktemp -d)"
|
||||||
unzip "${cache}/SMAPI-${smapiVersion}-installer.zip" -d "$smapiTmp"
|
unzip "${cache}/SMAPI-${smapiVersion}-installer.zip" -d "$smapiTmp"
|
||||||
echo "Preparing to install mods. Please select the same path as before when prompted."
|
|
||||||
echo "When it says SMAPI has been installed, press enter to finish installation."
|
|
||||||
alert
|
alert
|
||||||
|
ui_msgbox "Game Installer" "Game Installer" "Preparing to install mods. Please select the same path as before when prompted.\n\nWhen it says SMAPI has been installed, press enter to finish installation."
|
||||||
bash "${smapiTmp}/SMAPI ${smapiVersion} installer/install on Linux.sh"
|
bash "${smapiTmp}/SMAPI ${smapiVersion} installer/install on Linux.sh"
|
||||||
ln -sf "${HOME}/GOG Games/Stardew Valley/game" "${installPath}/StardewValley"
|
ln -sf "${HOME}/GOG Games/Stardew Valley/game" "${installPath}/StardewValley"
|
||||||
tar -xvf "${cache}/Mods.tar.xz" -C "${installPath}/StardewValley/"
|
tar -xvf "${cache}/Mods.tar.xz" -C "${installPath}/StardewValley/"
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
check_dependencies git sox tt++
|
check_dependencies git sox tt++
|
||||||
git -C "${installPath}/" clone --recurse-submodules https://github.com/stormdragon2976/tintin-stickmud.git | \
|
git -C "${installPath}/" clone --recurse-submodules https://github.com/stormdragon2976/tintin-stickmud.git | \
|
||||||
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
|
ui_progressbox "Game Installer" "Installing \"${game}\", please wait..."
|
||||||
|
@ -2,7 +2,5 @@ check_architecture x86_64
|
|||||||
get_installer "Ttc v3.2 linux.zip" "https://renzivan.itch.io/the-tornado-chicken"
|
get_installer "Ttc v3.2 linux.zip" "https://renzivan.itch.io/the-tornado-chicken"
|
||||||
unzip -d "${installPath}/The Tornado Chicken" "${cache}/Ttc v3.2 linux.zip"
|
unzip -d "${installPath}/The Tornado Chicken" "${cache}/Ttc v3.2 linux.zip"
|
||||||
chmod +x "${installPath}/The Tornado Chicken/Ttc"
|
chmod +x "${installPath}/The Tornado Chicken/Ttc"
|
||||||
echo "Note: When the game first starts it will be playing very loud music with the built in suboptimal voice."
|
|
||||||
echo "You are recommended to press page down several times to turn down the music, then go to settings and enable speech with screen reader, using speech dispatcher."
|
|
||||||
echo "You may then press page up to set the music to your liking."
|
|
||||||
alert
|
alert
|
||||||
|
ui_msgbox "Game Installer" "Game Installer" "Note: When the game first starts it will be playing very loud music with the built in suboptimal voice.\n\nYou are recommended to press page down several times to turn down the music, then go to settings and enable speech with screen reader, using speech dispatcher.\n\nYou may then press page up to set the music to your liking."
|
||||||
|
@ -3,5 +3,5 @@ check_dependencies dmidecode
|
|||||||
get_installer "upheaval-linux.zip" "https://leonegaming.itch.io/upheaval"
|
get_installer "upheaval-linux.zip" "https://leonegaming.itch.io/upheaval"
|
||||||
mkdir -p "${installPath}/Upheaval_Gui"
|
mkdir -p "${installPath}/Upheaval_Gui"
|
||||||
unzip -d "${installPath}/Upheaval_Gui" "${cache}/upheaval-linux.zip"
|
unzip -d "${installPath}/Upheaval_Gui" "${cache}/upheaval-linux.zip"
|
||||||
echo "To enable accessibility, press shift t when the game starts."
|
|
||||||
alert
|
alert
|
||||||
|
ui_msgbox "Game Installer" "Game Installer" "To enable accessibility, press shift t when the game starts."
|
||||||
|
@ -2,7 +2,5 @@ check_architecture x86_64
|
|||||||
get_installer "Wp v3.0 linux.zip" "https://psyra-productions.itch.io/wheels-of-prio"
|
get_installer "Wp v3.0 linux.zip" "https://psyra-productions.itch.io/wheels-of-prio"
|
||||||
unzip -d "${installPath}/Wheels of Prio" "${cache}/Wp v3.0 linux.zip"
|
unzip -d "${installPath}/Wheels of Prio" "${cache}/Wp v3.0 linux.zip"
|
||||||
chmod +x "${installPath}/Wheels of Prio/Wp"
|
chmod +x "${installPath}/Wheels of Prio/Wp"
|
||||||
echo "Note: When the game first starts it will be playing very loud music with the built in suboptimal voice."
|
|
||||||
echo "You are recommended to press page down several times to turn down the music, then go to settings and enable speech with screen reader, using speech dispatcher."
|
|
||||||
echo "You may then press page up to set the music to your liking."
|
|
||||||
alert
|
alert
|
||||||
|
ui_msgbox "Game Installer" "Game Installer" "Note: When the game first starts it will be playing very loud music with the built in suboptimal voice.\n\nYou are recommended to press page down several times to turn down the music, then go to settings and enable speech with screen reader, using speech dispatcher.\n\nYou may then press page up to set the music to your liking."
|
||||||
|
@ -4,7 +4,7 @@ if [[ "${architecture}" == "aarch64" ]]; then
|
|||||||
elif [[ "${architecture}" == "x86_64" ]]; then
|
elif [[ "${architecture}" == "x86_64" ]]; then
|
||||||
pkgname="Zombowl-Linux-X86_64.zip"
|
pkgname="Zombowl-Linux-X86_64.zip"
|
||||||
else
|
else
|
||||||
echo "Architecture ${architecture} is not supported."
|
ui_msgbox "Game Installer" "Game Installer" "Architecture ${architecture} is not supported."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
get_installer "${pkgname}" "https://stormdragon2976.itch.io/zombowl"
|
get_installer "${pkgname}" "https://stormdragon2976.itch.io/zombowl"
|
||||||
|
@ -572,13 +572,20 @@ help() {
|
|||||||
help_text+="spd_pitch=<number>\" # set speech-dispatcher speech pitch.\n"
|
help_text+="spd_pitch=<number>\" # set speech-dispatcher speech pitch.\n"
|
||||||
help_text+="spd_rate=<number>\" # set speech-dispatcher speech rate.\n"
|
help_text+="spd_rate=<number>\" # set speech-dispatcher speech rate.\n"
|
||||||
help_text+="spd_voice=<voice_name>\" # set speech-dispatcher voice. Be sure module is correct.\n"
|
help_text+="spd_voice=<voice_name>\" # set speech-dispatcher voice. Be sure module is correct.\n"
|
||||||
help_text+="spd_volume=<number>\" # set speech-dispatcher speech volume."
|
help_text+="spd_volume=<number>\" # set speech-dispatcher speech volume.\n\n"
|
||||||
|
help_text+="INSTALLER SCRIPT DIALOG FUNCTIONS:\n"
|
||||||
|
help_text+="ui_msgbox \"title\" \"backtitle\" \"message\" - Show information message\n"
|
||||||
|
help_text+="ui_yesno \"title\" \"backtitle\" \"question\" - Ask yes/no question\n"
|
||||||
|
help_text+="ui_inputbox \"title\" \"backtitle\" \"prompt\" \"default\" - Get text input\n"
|
||||||
|
help_text+="ui_menu \"title\" \"backtitle\" \"prompt\" option1 \"desc1\" ... - Show menu\n"
|
||||||
|
help_text+="ui_progressbox \"title\" \"text\" - Progress dialog for piped commands"
|
||||||
|
|
||||||
ui_msgbox "Linux Game Manager Help" "Linux Game Manager" "$help_text"
|
ui_msgbox "Linux Game Manager Help" "Linux Game Manager" "$help_text"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# main script
|
# main script
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user