Command And Conquer : Red Alert 3

Informations

Créateur Messages
GNU_Raziel

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 67170
Wine: 3.0.3

Retours d'expérience

Description

Français :
La troisième guerre mondiale vient d'éclater opposant les forces Alliées, l'Empire du soleil levant et le bloc soviétique. Command & Conquer : Alerte Rouge 3 est un jeu de stratégie sur PC qui vous permet d'incarner l'un des trois camps et de profiter de leurs armes et avancées technologiques pour vous imposer à travers la campagne solo et surtout les modes multijoueurs.

English :
In Command & Conquer: Red Alert 3's alternate history, it's the Allies launching a surprise attack on Hawaii, a longtime stronghold of the Empire of the Rising Sun, and that's just the tip of the proverbial iceberg. Red Alert 3 puts tongue firmly in cheek and dreams up a bizarre world where armored bears parachute from the sky, transformable Japanese mecha wreak havoc, and Mount Rushmore is actually a secret military facility where Honest Abe's head shoots deadly laser beams out of his eyes.

Captures d'écran

Code source

#!/bin/bash
# Date : (2009-03-12 19-00)
# Last revision : X
# Wine version used : 1.2, 1.3.15, 1.3.25, 1.3.26, 1.3.27, 1.4.1
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2009-03-12 19-00)
#   First script.
# [GNU_Raziel] (2013-06-20 21:00)
#   ?
# [Dadu042] (2020-08-13)
#   Wine 1.4.1 (outdated) -> 3.0.3 (not tested)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Command And Conquer : Red Alert 3"
SHORTCUT_NAME="Command And Conquer : Red Alert 3"
PREFIX="RA3"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="64"
STEAM_ID="17480"

if [ "$POL_LANG" == "fr" ]; then
        TITLE="Command And Conquer : Alerte Rouge 3"
        SHORTCUT_NAME="Command And Conquer : Red Alert 3"
fi

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ra3/top.jpg" "http://files.playonlinux.com/resources/setups/ra3/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 360

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Electronic Arts" "http://www.redalert3.com/" "GNU_Raziel" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL"

# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam

        # Mandatory pre-install fix for steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"

        # Shortcut done before install for steam version
        POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "ra3.png" "steam://rungameid/$STEAM_ID" "Game;StrategyGame;"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" "" "Game;"
fi
POL_Call POL_Install_gdiplus
POL_Call POL_Install_d3dx9

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
POL_Wine_OverrideDLL "builtin,native" "winhttp"

if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "AutoRun.exe"
        POL_Wine start /unix "$CDROM/AutoRun.exe"
        POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Making shortcut
if [ "$INSTALL_METHOD" != "STEAM" ]; then
        POL_Shortcut "RA3.exe" "$TITLE" "ra3.png" "" "Game;StrategyGame;"
fi

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Jeudi 13 Aoüt 2020 à 12:55
Dadu042

Information

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

Differences

@@ -1,11 +1,19 @@
 #!/bin/bash
 # Date : (2009-03-12 19-00)
-# Last revision : (2013-06-20 21:00)
+# Last revision : X
 # Wine version used : 1.2, 1.3.15, 1.3.25, 1.3.26, 1.3.27, 1.4.1
 # Distribution used to test : Debian Testing x64
 # Author : GNU_Raziel
 # Licence : Retail
 # Only For : http://www.playonlinux.com
+#
+# CHANGELOG
+# [GNU_Raziel] (2009-03-12 19-00)
+#   First script.
+# [GNU_Raziel] (2013-06-20 21:00)
+#   ?
+# [Dadu042] (2020-08-13)
+#   Wine 1.4.1 (outdated) -> 3.0.3 (not tested)
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -13,7 +21,7 @@
 TITLE="Command And Conquer : Red Alert 3"
 SHORTCUT_NAME="Command And Conquer : Red Alert 3"
 PREFIX="RA3"
-WORKING_WINE_VERSION="1.4.1"
+WORKING_WINE_VERSION="3.0.3"
 GAME_VMS="64"
 STEAM_ID="17480"
 

Nouveau code source

#!/bin/bash
# Date : (2009-03-12 19-00)
# Last revision : X
# Wine version used : 1.2, 1.3.15, 1.3.25, 1.3.26, 1.3.27, 1.4.1
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2009-03-12 19-00)
#   First script.
# [GNU_Raziel] (2013-06-20 21:00)
#   ?
# [Dadu042] (2020-08-13)
#   Wine 1.4.1 (outdated) -> 3.0.3 (not tested)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Command And Conquer : Red Alert 3"
SHORTCUT_NAME="Command And Conquer : Red Alert 3"
PREFIX="RA3"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="64"
STEAM_ID="17480"

if [ "$POL_LANG" == "fr" ]; then
        TITLE="Command And Conquer : Alerte Rouge 3"
        SHORTCUT_NAME="Command And Conquer : Red Alert 3"
fi

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ra3/top.jpg" "http://files.playonlinux.com/resources/setups/ra3/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 360

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Electronic Arts" "http://www.redalert3.com/" "GNU_Raziel" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL"

# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam

        # Mandatory pre-install fix for steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"

        # Shortcut done before install for steam version
        POL_Shortcut "steam.exe" "$SHORTCUT_NAME" "ra3.png" "steam://rungameid/$STEAM_ID" "Game;StrategyGame;"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" "" "Game;"
fi
POL_Call POL_Install_gdiplus
POL_Call POL_Install_d3dx9

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
POL_Wine_OverrideDLL "builtin,native" "winhttp"

if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "AutoRun.exe"
        POL_Wine start /unix "$CDROM/AutoRun.exe"
        POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" == "STEAM" ]; then
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Making shortcut
if [ "$INSTALL_METHOD" != "STEAM" ]; then
        POL_Shortcut "RA3.exe" "$TITLE" "ra3.png" "" "Game;StrategyGame;"
fi

POL_SetupWindow_Close
exit 0

Réponses

Willb3 Jeudi 13 Aoüt 2020 à 11:47
Willb3 Anonymous

Messages

Hi,

Tried to install multiple times to no avail.

Gets Stuck on "PlayOnLinux Wizard" -downloading "windowsXP-KB975337-x86-ENU.exe.

Any Ideas??

Réponses

Jeudi 13 Aoüt 2020 à 12:52
KB975337 is used by POL_Install_gdiplus, I've checked the link, it is OK for me so just try again (perhaps Archive.org was overloaded).
Anonymous
Dimanche 8 Novembre 2020 à 14:21
I try, it's ok for KB but the install fail. After enter the cd code, i have this message : impossible to find the file command and conquer red alerte 3 tm . check that the file exists and that you have access rights. Any Idea?

This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com