Resident Evil 3

Informations

Créateur Messages
odziom91

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 20024
Wine: 1.7.22

Retours d'expérience

Description

Resident Evil 3: Nemesis, known in Japan as Biohazard 3: Last Escape (バイオハザード3 ラストエスケープ), is a survival horror video game and the sequel to Resident Evil 2, developed and published by Capcom. The game was released for the PlayStation, and was subsequently ported to the Dreamcast, Microsoft Windows and Nintendo GameCube.

A Windows PC version was released first in Japan in June 2000 and later in other regions, which features enhanced 3D character model graphics and higher resolutions.

Code source

#!/bin/bash
#
# App: Resident Evil 3
# Category: Games
# Wine rating: Silver (old test), but works like Gold/Platinum
# Date : (2014-07-12 23-16)
# Last revision : (2014-07-12 23-16)
# Wine version used : 1.7.22
# Distribution used to test : Linux Mint 17 "Qiana" x64
# Author : OdzioM
# Licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Resident Evil 3"
PREFIX="RE_3"
WORKING_WINE_VERSION="1.7.22"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Capcom" "http://www.capcom.com/" "OdzioM" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose installation mode:
POL_SetupWindow_menu_num "$(eval_gettext 'Select a version of installation disc:')" "$TITLE" "$(eval_gettext 'Retail CD')~$(eval_gettext 'Other destination or other CD/DVD')" "~"

if [ "$APP_ANSWER" == "0" ]; then
        # Version from retail CD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        SETUP_EXE="$CDROM/setup.exe"
elif [ "$APP_ANSWER" == "1" ]; then
        # Other file localization
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
fi

POL_Wine "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "ResidentEvil3.exe" "$TITLE"

# Complete message
POL_SetupWindow_message "$(eval_gettext 'Installation complete!\nTo run $TITLE please select $TITLE icon from your desktop.\n\nThank you for using this installation script.')" "$TITLE"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
odziom91 Samedi 12 Juillet 2014 à 23:34
odziom91

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -0,0 +1,52 @@
+#!/bin/bash
+#
+# App: Resident Evil 3
+# Category: Games
+# Wine rating: Silver (old test), but works like Gold/Platinum
+# Date : (2014-07-12 23-16)
+# Last revision : (2014-07-12 23-16)
+# Wine version used : 1.7.22
+# Distribution used to test : Linux Mint 17 "Qiana" x64
+# Author : OdzioM
+# Licence : Retail
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+TITLE="Resident Evil 3"
+PREFIX="RE_3"
+WORKING_WINE_VERSION="1.7.22"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "Capcom" "http://www.capcom.com/" "OdzioM" "$PREFIX"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+# Choose installation mode:
+POL_SetupWindow_menu_num "$(eval_gettext 'Select a version of installation disc:')" "$TITLE" "$(eval_gettext 'Retail CD')~$(eval_gettext 'Other destination or other CD/DVD')" "~"
+
+if [ "$APP_ANSWER" == "0" ]; then
+	# Version from retail CD
+	POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE"
+	POL_SetupWindow_cdrom
+	POL_SetupWindow_check_cdrom "setup.exe"
+	SETUP_EXE="$CDROM/setup.exe"
+elif [ "$APP_ANSWER" == "1" ]; then
+	# Other file localization
+	cd "$HOME"
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+	SETUP_EXE="$APP_ANSWER"
+fi
+
+POL_Wine "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+POL_Shortcut "ResidentEvil3.exe" "$TITLE"
+
+# Complete message
+POL_SetupWindow_message "$(eval_gettext 'Installation complete!\nTo run $TITLE please select $TITLE icon from your desktop.\n\nThank you for using this installation script.')" "$TITLE"
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/bin/bash
#
# App: Resident Evil 3
# Category: Games
# Wine rating: Silver (old test), but works like Gold/Platinum
# Date : (2014-07-12 23-16)
# Last revision : (2014-07-12 23-16)
# Wine version used : 1.7.22
# Distribution used to test : Linux Mint 17 "Qiana" x64
# Author : OdzioM
# Licence : Retail

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Resident Evil 3"
PREFIX="RE_3"
WORKING_WINE_VERSION="1.7.22"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Capcom" "http://www.capcom.com/" "OdzioM" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose installation mode:
POL_SetupWindow_menu_num "$(eval_gettext 'Select a version of installation disc:')" "$TITLE" "$(eval_gettext 'Retail CD')~$(eval_gettext 'Other destination or other CD/DVD')" "~"

if [ "$APP_ANSWER" == "0" ]; then
        # Version from retail CD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        SETUP_EXE="$CDROM/setup.exe"
elif [ "$APP_ANSWER" == "1" ]; then
        # Other file localization
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
fi

POL_Wine "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "ResidentEvil3.exe" "$TITLE"

# Complete message
POL_SetupWindow_message "$(eval_gettext 'Installation complete!\nTo run $TITLE please select $TITLE icon from your desktop.\n\nThank you for using this installation script.')" "$TITLE"

POL_SetupWindow_Close
exit

Réponses