From 64a6fa04ad6bdde4bf45bbe0ce3efb1e170b39ba Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Thu, 14 Oct 2021 23:17:40 -0400 Subject: [PATCH] Removed game "Revenge of the Undead". This game has proven to be quite unstable as far as admin goes. Also, when it does work, server lag tends to render it unplayable. Unless something extremely drastic changes, I seriously doube this one will be coming back to AGM. --- audiogame-manager.sh | 9 ---- game-scripts/revenge-of-the-undead-update.sh | 49 -------------------- 2 files changed, 58 deletions(-) delete mode 100755 game-scripts/revenge-of-the-undead-update.sh diff --git a/audiogame-manager.sh b/audiogame-manager.sh index 4af4133..0d73395 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -892,7 +892,6 @@ gameList=( "Pontes Kickups!" #"Psycho Strike" "Q9" - #"Revenge of the Undead" "Rhythm Rage" #"River raiders" "RS Games" @@ -1926,14 +1925,6 @@ EOF wine "${cache}/q9_english_installer.exe" /silent add_launcher "c:\Program Files\Q9 Action Game\q9.exe" ;; - "Revenge of the Undead") - export winVer="win7" - install_wine_bottle speechsdk - download "https://ims-productions.com/downloads/rotu.zip" - unzip -d "$WINEPREFIX/drive_c/Program Files/revenge of the undead" "${cache}/rotu.zip" - find "${WINEPREFIX}" -type f -name "nvdaControllerClient32.dll" -exec rm -fv "{}" \; - add_launcher "c:\Program Files\revenge of the undead\rotu.exe" - ;; "Rhythm Rage") export bottle="oriol-gomez" export winVer="win7" diff --git a/game-scripts/revenge-of-the-undead-update.sh b/game-scripts/revenge-of-the-undead-update.sh deleted file mode 100755 index 90db87a..0000000 --- a/game-scripts/revenge-of-the-undead-update.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash -# -# âe contents of this file are subject to the Common Public Attribution -# License Version 1.0 (the âcenseâ you may not use this file except in -# compliance with the License. You may obtain a copy of the License at -# https://opensource.org/licenses/CPAL-1.0. The License is based on the Mozilla Public License Version -# 1.1 but Sections 14 and 15 have been added to cover use of software over a -# computer network and provide for limited attribution for the Original -# Developer. In addition, Exhibit A has been modified to be consistent with -# Exhibit B. -# -# Software distributed under the License is distributed on an â ISâasis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is audiogame manager. -# -# The Original Developer is not the Initial Developer and is . If -# left blank, the Original Developer is the Initial Developer. -# -# The Initial Developer of the Original Code is Billy "Storm Dragon" Wolfe. All portions of -# the code written by Billy Wolfe are Copyright (c) 2020. All Rights -# Reserved. -# -# Contributor Michael Taboada. -# -# Contributor Jeremiah Ticket. -# -# Attribution Copyright Notice: Audiogame manager copyright 2020 Storm Dragon. All rights reserved. -# -# Attribution Phrase (not exceeding 10 words): A Stormux project -# -# Attribution URL: https://stormgames.wolfe.casa -# -# Graphic Image as provided in the Covered Code, if any. -# -# Display of Attribution Information is required in Larger -# Works which are defined in the CPAL as a work which combines Covered Code -# or portions thereof with code not governed by the terms of the CPAL. - -cache="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager/cache" -url="https://ims-productions.com/downloads/rotu.zip" -(rm -v "${cache}/rotu.zip" -wget -O "${cache}/rotu.zip" "$url" || exit 1 -unzip -od "$HOME/.local/wine/revenge-of-the-undead/drive_c/Program Files/revenge of the undead" "${cache}/rotu.zip" -find "$HOME/.local/wine/revenge-of-the-undead" -type f -name 'nvdaControllerClient32.dll' -exec rm -fv {} \; ) | dialog --progressbox "updating Revenge of the undead, please wait..." -1 -1 - -exit 0