Conjury fully added and working.
This commit is contained in:
parent
aedc053e5b
commit
a605139210
@ -418,6 +418,8 @@ get_installer() {
|
|||||||
get_steam() {
|
get_steam() {
|
||||||
# Arguments: $1 id of item for download, $2 url for game
|
# Arguments: $1 id of item for download, $2 url for game
|
||||||
trap "exit 0" SIGINT
|
trap "exit 0" SIGINT
|
||||||
|
echo "The next steps will install through steamcmd."
|
||||||
|
alert
|
||||||
# Check for steamcmd
|
# Check for steamcmd
|
||||||
if ! command -v steamcmd &> /dev/null ; then
|
if ! command -v steamcmd &> /dev/null ; then
|
||||||
dialog --backtitle "Audiogame Manager" \
|
dialog --backtitle "Audiogame Manager" \
|
||||||
@ -427,7 +429,7 @@ get_steam() {
|
|||||||
# Get Steam user name.
|
# Get Steam user name.
|
||||||
steamUser="$(dialog --ok-label "Continue" \
|
steamUser="$(dialog --ok-label "Continue" \
|
||||||
--backtitle "Audiogame Manager" \
|
--backtitle "Audiogame Manager" \
|
||||||
--inputbox "Please enter your Steam user name:" -1 -1)"
|
--inputbox "Please enter your Steam user name:" -1 -1 --stdout)"
|
||||||
# Create message for dialog.
|
# Create message for dialog.
|
||||||
local message="Make sure ${game} is available in your Steam library and press enter to continue. The URL for ${game} is $2"
|
local message="Make sure ${game} is available in your Steam library and press enter to continue. The URL for ${game} is $2"
|
||||||
if echo "$2" | xclip -selection clipboard 2> /dev/null ; then
|
if echo "$2" | xclip -selection clipboard 2> /dev/null ; then
|
||||||
@ -437,7 +439,7 @@ get_steam() {
|
|||||||
--backtitle "Audiogame Manager" \
|
--backtitle "Audiogame Manager" \
|
||||||
--msgbox "$message" -1 -1
|
--msgbox "$message" -1 -1
|
||||||
# Download the game
|
# Download the game
|
||||||
steamcmd +@sSteamCmdForcePlatformType windows +force_install_dir "$HOME/.local/wine/$bottle/drive_c/Program Files/" +login "$steamUser" +app_update "$1" +quit || { dialog --backtitle "Audiogame Manager" \
|
steamcmd +@sSteamCmdForcePlatformType windows +force_install_dir "$WINEPREFIX/drive_c/Program Files/" +login "$steamUser" +app_update "$1" +quit || { dialog --backtitle "Audiogame Manager" \
|
||||||
--infobox "Something went wrong. Please make sure you have a stable internet connection, and if the problem persists, contact audiogame-manager's developers." -1 -1
|
--infobox "Something went wrong. Please make sure you have a stable internet connection, and if the problem persists, contact audiogame-manager's developers." -1 -1
|
||||||
exit 1; }
|
exit 1; }
|
||||||
}
|
}
|
||||||
@ -1122,6 +1124,7 @@ gameList=(
|
|||||||
"Clashes of the Sky"
|
"Clashes of the Sky"
|
||||||
"Code Dungeon"
|
"Code Dungeon"
|
||||||
"Coin Collector"
|
"Coin Collector"
|
||||||
|
"Conjury"
|
||||||
#"Constant Battle"
|
#"Constant Battle"
|
||||||
"Copter Mission"
|
"Copter Mission"
|
||||||
"Crazy Party"
|
"Crazy Party"
|
||||||
@ -1942,6 +1945,15 @@ download "https://erion.cf/files/ag_103.zip"
|
|||||||
find "$WINEPREFIX/drive_c/Program Files/coin collector" -type f -name "nvdaControllerClient64.dll" -exec cp -v "$cache/nvda2speechd64.dll" "{}" \;
|
find "$WINEPREFIX/drive_c/Program Files/coin collector" -type f -name "nvdaControllerClient64.dll" -exec cp -v "$cache/nvda2speechd64.dll" "{}" \;
|
||||||
add_launcher "c:\Program Files\coin collector\game.exe"
|
add_launcher "c:\Program Files\coin collector\game.exe"
|
||||||
;;
|
;;
|
||||||
|
"Conjury")
|
||||||
|
download "https://github.com/RastislavKish/nvda2speechd/releases/download/v0.1/nvda2speechd64.dll"
|
||||||
|
export WINEARCH=win64
|
||||||
|
export winVer="win8"
|
||||||
|
install_wine_bottle
|
||||||
|
get_steam 2684520 "https://store.steampowered.com/app/2684520/Conjury/"
|
||||||
|
find "$WINEPREFIX" -type f -name 'nvdaControllerClient.dll' -exec cp -v "$cache/nvda2speechd64.dll" "{}" \;
|
||||||
|
add_launcher 'c:\Program Files\release\Conjury.exe'
|
||||||
|
;;
|
||||||
"Constant Battle")
|
"Constant Battle")
|
||||||
export winVer="win7"
|
export winVer="win7"
|
||||||
download "https://renovagames.com/bc/BC-Setup.exe"
|
download "https://renovagames.com/bc/BC-Setup.exe"
|
||||||
|
Loading…
Reference in New Issue
Block a user