The Witcher Patch 1.5

Informations

Créateur Messages
GNU_Raziel

Information

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

Informations

Plate-formes :
Téléchargements : 14690
Wine: System

Retours d'expérience

Description

Patch 1.5 for The Witcher standard and Enhanced edition.

Captures d'écran

Code source

#!/bin/bash
# Date : (2010-08-31 13-00)
# Last revision : (2012-04-11 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"

TWEE="0"
TITLE="The Witcher : Enhanced Edition"
PREFIX="thewitcher"
AUTHOR="GNU_Raziel"
PVERSION="1.5"

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

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION installer for $TITLE')"

# Checking Enhanced Edition file
if [ -e "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/ENHANCED_EDITION" ]; then
        POL_SetupWindow_message "$(eval_gettext 'This game already have Enhanced Edition\nand only need patch 1.5')" "$TITLE"
        TWEE="1"
fi

# Checking if game is installed
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 0
        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 0
fi

# Using specific Wine
if [ "$TWEE" == "1" ]; then
        # 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 "$TITLE"
        else
                cd "$POL_USER_ROOT/tmp"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.gazeta.pl/bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
                POL_Wine_WaitExit "$TITLE"
                rm "TheWitcherPatch.1.5.exe"
        fi
else
        # Asking about patch local or not
        cd "$HOME"
        POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
        if [ "$INSTALL_METHOD" == "LOCAL" ]; then
                POL_SetupWindow_browse "$(eval_gettext 'Select first patch (EE Upgrade) to execute')" "$TITLE" ""
                POL_Wine start /unix "$APP_ANSWER"
                POL_Wine_WaitExit "$TITLE"
                POL_SetupWindow_browse "$(eval_gettext 'Select second patch (1.5) to execute')" "$TITLE" ""
                POL_Wine start /unix "$APP_ANSWER"
                POL_Wine_WaitExit "$TITLE"
        else
                cd "$POL_USER_ROOT/tmp"
                if [ "$POL_LANG" == "fr" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/1/TWEE_French_language_pack.exe"
                elif [ "$POL_LANG" == "de" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/5/TWEE_German_language_pack.exe"
                elif [ "$POL_LANG" == "es" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_Spanish_language_pack.exe"
                elif [ "$POL_LANG" == "it" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_Italian_language_pack.exe"
                elif [ "$POL_LANG" == "ru" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Russian_language_pack.exe"
                elif [ "$POL_LANG" == "pl" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/6/TWEE_Polish_language_pack.exe"
                elif [ "$POL_LANG" == "hu" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/8/TWEE_Hungarian_language_pack.exe"
                elif [ "$POL_LANG" == "cs" ]; then
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/6/TWEE_Czech_language_pack.exe"
                else
                        PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/7/TWEE_English_language_pack.exe"
                fi
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.gazeta.pl/bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 1 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Upgrade.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 2 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_adventure_Side_Effects.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 3 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/0/TWEE_adventure_The_Price_of_Neutrality.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 4 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL"
                POL_SetupWindow_message "$(eval_gettext 'Donwload finished.\nPatches installation will begin')" "$TITLE"
                POL_Wine start /unix "TWEE_Upgrade.exe"
                POL_Wine_WaitExit "$TITLE"
                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
                POL_Wine_WaitExit "$TITLE"
                rm "TWEE_*.exe"
                rm "TheWitcherPatch.1.5.exe"
        fi
fi 

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Samedi 20 Avril 2019 à 8:15
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Repaired some dead URL. There is still 3 dead URL for the last .EXE files (replacements URLs to find).

Note: official patch v1.5 is only downloadable as .ZIP from the official web site. See also : https://witcher.gamepedia.com

Differences

@@ -5,115 +5,119 @@
 # Author : GNU_Raziel
 # Licence : Retail
 # Only For : http://www.playonlinux.com
+#
+#
+# Changelog:
+# 2019-04-20: repair dead URLs. Still some 3 URLs to find replacements for (cdn.sciagnij.pl). Dadu042.
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TWEE="0"
 TITLE="The Witcher : Enhanced Edition"
 PREFIX="thewitcher"
 AUTHOR="GNU_Raziel"
 PVERSION="1.5"
-
+ 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/witcher/top.jpg" "http://files.playonlinux.com/resources/setups/witcher/left.jpg" "$TITLE"
 POL_SetupWindow_Init
-
+ 
 # Starting debugging API
 POL_Debug_Init
-
+ 
 POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION installer for $TITLE')"
-
+ 
 # Checking Enhanced Edition file
 if [ -e "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/ENHANCED_EDITION" ]; then
-	POL_SetupWindow_message "$(eval_gettext 'This game already have Enhanced Edition\nand only need patch 1.5')" "$TITLE"
-	TWEE="1"
+        POL_SetupWindow_message "$(eval_gettext 'This game already have Enhanced Edition\nand only need patch 1.5')" "$TITLE"
+        TWEE="1"
 fi
-
+ 
 # Checking if game is installed
 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 0
-	fi
+{        
+        if [ ! -e "$POL_USER_ROOT/wineprefix/$1" ]; then
+                POL_SetupWindow_message "$(eval_gettext 'Game is not installed.')" "$TITLE"
+                POL_SetupWindow_Close
+                exit 0
+        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 0
+        POL_SetupWindow_message "$(eval_gettext 'Steam have is own automatic update system.')" "$TITLE"
+        POL_SetupWindow_Close
+        exit 0
 fi
-
+ 
 # Using specific Wine
 if [ "$TWEE" == "1" ]; then
-	# 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 "$TITLE"
-	else
-		cd "$POL_USER_ROOT/tmp"
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.gazeta.pl/bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
-		POL_Wine start /unix "TheWitcherPatch.1.5.exe"
-		POL_Wine_WaitExit "$TITLE"
-		rm "TheWitcherPatch.1.5.exe"
-	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 "$TITLE"
+        else
+                cd "$POL_USER_ROOT/tmp"
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
+                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
+                POL_Wine_WaitExit "$TITLE"
+                rm "TheWitcherPatch.1.5.exe"
+        fi
 else
-	# Asking about patch local or not
-	cd "$HOME"
-	POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
-	if [ "$INSTALL_METHOD" == "LOCAL" ]; then
-		POL_SetupWindow_browse "$(eval_gettext 'Select first patch (EE Upgrade) to execute')" "$TITLE" ""
-		POL_Wine start /unix "$APP_ANSWER"
-		POL_Wine_WaitExit "$TITLE"
-		POL_SetupWindow_browse "$(eval_gettext 'Select second patch (1.5) to execute')" "$TITLE" ""
-		POL_Wine start /unix "$APP_ANSWER"
-		POL_Wine_WaitExit "$TITLE"
-	else
-		cd "$POL_USER_ROOT/tmp"
-		if [ "$POL_LANG" == "fr" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/1/TWEE_French_language_pack.exe"
-		elif [ "$POL_LANG" == "de" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/5/TWEE_German_language_pack.exe"
-		elif [ "$POL_LANG" == "es" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_Spanish_language_pack.exe"
-		elif [ "$POL_LANG" == "it" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_Italian_language_pack.exe"
-		elif [ "$POL_LANG" == "ru" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Russian_language_pack.exe"
-		elif [ "$POL_LANG" == "pl" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/6/TWEE_Polish_language_pack.exe"
-		elif [ "$POL_LANG" == "hu" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/8/TWEE_Hungarian_language_pack.exe"
-		elif [ "$POL_LANG" == "cs" ]; then
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/6/TWEE_Czech_language_pack.exe"
-		else
-			PATCH_URL="http://cdn.sciagnij.pl/bi.sciagnij.pl/0/7/TWEE_English_language_pack.exe"
-		fi
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.gazeta.pl/bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 1 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Upgrade.exe"
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 2 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_adventure_Side_Effects.exe"
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 3 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/0/TWEE_adventure_The_Price_of_Neutrality.exe"
-		POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 4 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL"
-		POL_SetupWindow_message "$(eval_gettext 'Donwload finished.\nPatches installation will begin')" "$TITLE"
-		POL_Wine start /unix "TWEE_Upgrade.exe"
-		POL_Wine_WaitExit "$TITLE"
-		POL_Wine start /unix "TheWitcherPatch.1.5.exe"
-		POL_Wine_WaitExit "$TITLE"
-		rm "TWEE_*.exe"
-		rm "TheWitcherPatch.1.5.exe"
-	fi
-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 first patch (EE Upgrade) to execute')" "$TITLE" ""
+                POL_Wine start /unix "$APP_ANSWER"
+                POL_Wine_WaitExit "$TITLE"
+                POL_SetupWindow_browse "$(eval_gettext 'Select second patch (1.5) to execute')" "$TITLE" ""
+                POL_Wine start /unix "$APP_ANSWER"
+                POL_Wine_WaitExit "$TITLE"
+        else
+                cd "$POL_USER_ROOT/tmp"
+                if [ "$POL_LANG" == "fr" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_French_language_pack.exe"
+                elif [ "$POL_LANG" == "de" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_German_language_pack.exe"
+                elif [ "$POL_LANG" == "es" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Spanish_language_pack.exe"
+                elif [ "$POL_LANG" == "it" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Italian_language_pack.exe"
+                elif [ "$POL_LANG" == "ru" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Russian_language_pack.exe"
+                elif [ "$POL_LANG" == "pl" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Polish_language_pack.exe"
+                elif [ "$POL_LANG" == "hu" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Hungarian_language_pack.exe"
+                elif [ "$POL_LANG" == "cs" ]; then
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Czech_language_pack.exe"
+                else
+                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_English_language_pack.exe"
+                fi
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 1 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Upgrade.exe"
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 2 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_adventure_Side_Effects.exe"
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 3 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/0/TWEE_adventure_The_Price_of_Neutrality.exe"
+                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 4 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL"
+                POL_SetupWindow_message "$(eval_gettext 'Donwload finished.\nPatches installation will begin')" "$TITLE"
+                POL_Wine start /unix "TWEE_Upgrade.exe"
+                POL_Wine_WaitExit "$TITLE"
+                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
+                POL_Wine_WaitExit "$TITLE"
+                rm "TWEE_*.exe"
+                rm "TheWitcherPatch.1.5.exe"
+        fi
+fi
+ 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2010-08-31 13-00)
# Last revision : (2012-04-11 21:00)
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com
#
#
# Changelog:
# 2019-04-20: repair dead URLs. Still some 3 URLs to find replacements for (cdn.sciagnij.pl). Dadu042.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TWEE="0"
TITLE="The Witcher : Enhanced Edition"
PREFIX="thewitcher"
AUTHOR="GNU_Raziel"
PVERSION="1.5"
 
# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/witcher/top.jpg" "http://files.playonlinux.com/resources/setups/witcher/left.jpg" "$TITLE"
POL_SetupWindow_Init
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_free_presentation "$TITLE" "$(eval_gettext 'Welcome in the patch $PVERSION installer for $TITLE')"
 
# Checking Enhanced Edition file
if [ -e "$POL_USER_ROOT/wineprefix/$PREFIX/drive_c/ENHANCED_EDITION" ]; then
        POL_SetupWindow_message "$(eval_gettext 'This game already have Enhanced Edition\nand only need patch 1.5')" "$TITLE"
        TWEE="1"
fi
 
# Checking if game is installed
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 0
        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 0
fi
 
# Using specific Wine
if [ "$TWEE" == "1" ]; then
        # 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 "$TITLE"
        else
                cd "$POL_USER_ROOT/tmp"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
                POL_Wine_WaitExit "$TITLE"
                rm "TheWitcherPatch.1.5.exe"
        fi
else
        # Asking about patch local or not
        cd "$HOME"
        POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
        if [ "$INSTALL_METHOD" == "LOCAL" ]; then
                POL_SetupWindow_browse "$(eval_gettext 'Select first patch (EE Upgrade) to execute')" "$TITLE" ""
                POL_Wine start /unix "$APP_ANSWER"
                POL_Wine_WaitExit "$TITLE"
                POL_SetupWindow_browse "$(eval_gettext 'Select second patch (1.5) to execute')" "$TITLE" ""
                POL_Wine start /unix "$APP_ANSWER"
                POL_Wine_WaitExit "$TITLE"
        else
                cd "$POL_USER_ROOT/tmp"
                if [ "$POL_LANG" == "fr" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_French_language_pack.exe"
                elif [ "$POL_LANG" == "de" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_German_language_pack.exe"
                elif [ "$POL_LANG" == "es" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Spanish_language_pack.exe"
                elif [ "$POL_LANG" == "it" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Italian_language_pack.exe"
                elif [ "$POL_LANG" == "ru" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Russian_language_pack.exe"
                elif [ "$POL_LANG" == "pl" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Polish_language_pack.exe"
                elif [ "$POL_LANG" == "hu" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Hungarian_language_pack.exe"
                elif [ "$POL_LANG" == "cs" ]; then
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_Czech_language_pack.exe"
                else
                        PATCH_URL="http://wpc.4d7d.edgecastcdn.net/004D7D/files/TWEE/TWEE_English_language_pack.exe"
                fi
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://bi.gazeta.pl/pub/gry/TheWitcherPatch.1.5.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 1 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/4/TWEE_Upgrade.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 2 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/9/TWEE_adventure_Side_Effects.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 3 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "http://cdn.sciagnij.pl/bi.sciagnij.pl/0/0/TWEE_adventure_The_Price_of_Neutrality.exe"
                POL_SetupWindow_download "$(eval_gettext 'Wait while the patch 4 is downloading...\nThis operation can take time, depending of your connexion.')" "$TITLE" "$PATCH_URL"
                POL_SetupWindow_message "$(eval_gettext 'Donwload finished.\nPatches installation will begin')" "$TITLE"
                POL_Wine start /unix "TWEE_Upgrade.exe"
                POL_Wine_WaitExit "$TITLE"
                POL_Wine start /unix "TheWitcherPatch.1.5.exe"
                POL_Wine_WaitExit "$TITLE"
                rm "TWEE_*.exe"
                rm "TheWitcherPatch.1.5.exe"
        fi
fi
 
POL_SetupWindow_Close
exit 0

Réponses

Dimanche 21 Avril 2019 à 14:31
Working URL : https://support.cdprojektred.com/en/witcher-1/pc/sp-technical (for patches 1.4 AND 1.5, and other files).
Vinnom Mercredi 24 Décembre 2014 à 12:24
Vinnom

Messages

The link for the patch isn't working. I've tried go to the website manually but it couldn't reach.

Réponses

Dimanche 21 Avril 2019 à 14:28
As of 2019 the URLs to "http://cdn.sciagnij.pl/bi.sciagnij.pl/" are down.