Command And Conquer : Red Alert 3 Patch 1.12
Informations
Créateur | Messages |
---|---|
GNU_Raziel
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionPatch 1.12 for Command And Conquer : Red Alert 3. Captures d'écran
Code source#!/bin/bash # Date : (2008-09-07 19-00) # Last revision : (2013-06-20 21:00) # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Command And Conquer : Red Alert 3" SHORTCUT_NAME="Command And Conquer : Red Alert 3" PREFIX="RA3" PVERSION="1.12" 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 820 # Starting debugging API POL_Debug_Init POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION Installer for $TITLE')" POL_SetupWindow_checkexist() { if [ ! -e "$POL_USER_ROOT/wineprefix/$1" ]; then POL_SetupWindow_message "$(eval_gettext 'Game is not installed.')" "$TITLE" POL_SetupWindow_Close exit fi } POL_SetupWindow_checkexist "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Check if it's Steam version STEAM=`find $WINEPREFIX -name "Steam.exe"` if [ "$STEAM" != "" ]; then POL_SetupWindow_message "$(eval_gettext 'Steam have is own automatic update system.')" "$TITLE" POL_SetupWindow_Close exit fi # Asking about patch local or not cd "$HOME" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" == "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Select patch to execute')" "$TITLE" "" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit else cd "$POL_USER_ROOT/tmp" if [ "$POL_LANG" == "fr" ]; then PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_french_patch1.012.exe" PATCH_EXE="RedAlert3_french_patch1.012.exe" elif [ "$POL_LANG" == "de" ]; then PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_german_patch1.012.exe" PATCH_EXE="RedAlert3_german_patch1.012.exe" else PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_english_patch1.012.exe" PATCH_EXE="RedAlert3_english_patch1.012.exe" fi POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL" POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installation in progress...')" "$TITLE" POL_Wine start /unix "$PATCH_EXE" POL_Wine_WaitExit rm "$PATCH_EXE" fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
FuzzyToothpaste | Mardi 16 September 2014 à 2:42 |
FuzzyToothpaste
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesPlease change the name from Command And Conquer : Red Alert 3 Patch 1.12 to it's official name, which is Command & Conquer: Red Alert 3 Patch 1.12. Differences@@ -9,14 +9,14 @@ [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -TITLE="Command And Conquer : Red Alert 3" -SHORTCUT_NAME="Command And Conquer : Red Alert 3" +TITLE="Command & Conquer: Red Alert 3" +SHORTCUT_NAME="Command & Conquer Red Alert 3" PREFIX="RA3" PVERSION="1.12" if [ "$POL_LANG" == "fr" ]; then - TITLE="Command And Conquer : Alerte Rouge 3" - SHORTCUT_NAME="Command And Conquer : Red Alert 3" + TITLE="Command & Conquer: Alerte Rouge 3" + SHORTCUT_NAME="Command & Conquer: Red Alert 3" fi # Starting the script @@ -27,7 +27,7 @@ # Starting debugging API POL_Debug_Init -POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION Installer for $TITLE')" +POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION installer for $TITLE')" POL_SetupWindow_checkexist() { @@ -46,7 +46,7 @@ # Check if it's Steam version STEAM=`find $WINEPREFIX -name "Steam.exe"` if [ "$STEAM" != "" ]; then - POL_SetupWindow_message "$(eval_gettext 'Steam have is own automatic update system.')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'Steam has its own automatic update system.')" "$TITLE" POL_SetupWindow_Close exit fi @@ -55,7 +55,7 @@ cd "$HOME" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" == "LOCAL" ]; then - POL_SetupWindow_browse "$(eval_gettext 'Select patch to execute')" "$TITLE" "" + POL_SetupWindow_browse "$(eval_gettext 'Select patch installer to execute')" "$TITLE" "" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit else Nouveau code source#!/bin/bash # Date : (2008-09-07 19-00) # Last revision : (2013-06-20 21:00) # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Command & Conquer: Red Alert 3" SHORTCUT_NAME="Command & Conquer Red Alert 3" PREFIX="RA3" PVERSION="1.12" if [ "$POL_LANG" == "fr" ]; then TITLE="Command & Conquer: Alerte Rouge 3" SHORTCUT_NAME="Command & 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 820 # Starting debugging API POL_Debug_Init POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION installer for $TITLE')" POL_SetupWindow_checkexist() { if [ ! -e "$POL_USER_ROOT/wineprefix/$1" ]; then POL_SetupWindow_message "$(eval_gettext 'Game is not installed.')" "$TITLE" POL_SetupWindow_Close exit fi } POL_SetupWindow_checkexist "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Check if it's Steam version STEAM=`find $WINEPREFIX -name "Steam.exe"` if [ "$STEAM" != "" ]; then POL_SetupWindow_message "$(eval_gettext 'Steam has its own automatic update system.')" "$TITLE" POL_SetupWindow_Close exit fi # Asking about patch local or not cd "$HOME" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" == "LOCAL" ]; then POL_SetupWindow_browse "$(eval_gettext 'Select patch installer to execute')" "$TITLE" "" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit else cd "$POL_USER_ROOT/tmp" if [ "$POL_LANG" == "fr" ]; then PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_french_patch1.012.exe" PATCH_EXE="RedAlert3_french_patch1.012.exe" elif [ "$POL_LANG" == "de" ]; then PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_german_patch1.012.exe" PATCH_EXE="RedAlert3_german_patch1.012.exe" else PATCH_URL="http://na.llnet.cnc3tv.ea.com/u/f/eagames/cnc3/cnc3tv/RedAlert/RedAlert3Patch_112/RedAlert3_english_patch1.012.exe" PATCH_EXE="RedAlert3_english_patch1.012.exe" fi POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL" POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installation in progress...')" "$TITLE" POL_Wine start /unix "$PATCH_EXE" POL_Wine_WaitExit rm "$PATCH_EXE" fi POL_SetupWindow_Close exit 0 Réponses |
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