Command And Conquer : Red Alert 3

Informations

Creator Message
GNU_Raziel

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 66752
Wine: 3.0.3

Feedbacks

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.

Screenshots

Source code

#!/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:

Contribute
Member Message
Dadu042 Thursday 13 August 2020 at 12:55
Dadu042

Information

This update has been approved by the team.

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"
 

New source code

#!/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

Replies

Willb3 Thursday 13 August 2020 at 11:47
Willb3 Anonymous

Message

Hi,

Tried to install multiple times to no avail.

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

Any Ideas??

Replies

Thursday 13 August 2020 at 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
Sunday 8 November 2020 at 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?