GOG.com - The Witcher Enhanced Edition Directors Cut
Informations
Créateur | Messages |
---|---|
petch
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience3 2 DescriptionEnglish: 1270, Gerald de Rive, aka the "white wolf", is a Witcher, a monster hunter... GOG now has installers for Mac GOG propose maintenant des installeurs pour Mac Code source#!/bin/bash # Date : (2012-02-19 00-28) # Last revision : see changelog # Wine version used : 1.5.18, 1.6.1, 1.7.6, 3.0.3 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2012-02-19 00-28) # First script # [Dadu042] (2020-01-01) # Wine 1.7.6 (outdated) -> 3.0.3. Maybe POL_install_d3dx9_36 + 43 and not necessary anymore. # Add SetVideoDriver # Update POL_Shortcut_Document # # KNOWN ISSUES: # 1.6.x better performance # 1.7.x health gauge # 1.7.0-1.7.5 no music [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="the_witcher" PREFIX="TheWitcher_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - The Witcher Enhanced Edition Directors Cut" SHORTCUT_NAME="The Witcher Enhanced Edition DC" POL_SetupWindow_Init POL_SetupWindow_SetID 1065 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "CD Projekt RED" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "66ffe865f34e71ef2beb961748873459" "6d24dcb24f4776889e03715044ca8da0" "3060962cd3ef2ec68a9c02fdeb5ce839" "602a920d5e2c05437f70c5600911aca8" "296605a9b5e7acba6a59cd17b98a84c6" "a820dc0f09afefead9e06a9c37491c1b" "e5261e0eff49b83f48a384ece3050106" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Default interface leaks winprocs and crashes under Wine POL_Call POL_GoG_install "/nogui" # GoG work! Set_OS winxp # Fix black screen POL_Call POL_install_d3dx9_36 # Fix large dark polygons, (in rain and more) POL_Call POL_install_d3dx9_43 ################ # GPU # ################ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS "128" # Useful for Nvidia GPUs # POL_Call POL_Install_physx # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;" POL_Shortcut_Document "$SHORTCUT_NAME" "manual.pdf" # C:\GOG Games\The Witcher Enhanced Edition Director's Cut\readme.rtf POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 2 Janvier 2020 à 7:49 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,23 +1,32 @@ #!/bin/bash # Date : (2012-02-19 00-28) -# Last revision : (2014-03-30 18-52) -# Wine version used : 1.5.18, 1.6.1, 1.7.6 +# Last revision : see changelog +# Wine version used : 1.5.18, 1.6.1, 1.7.6, 3.0.3 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : - -# 1.6.x better performance -# 1.7.x health gauge -# 1.7.0-1.7.5 no music +# +# CHANGELOG +# [Pierre Etchemaite] (2012-02-19 00-28) +# First script +# [Dadu042] (2020-01-01) +# Wine 1.7.6 (outdated) -> 3.0.3. Maybe POL_install_d3dx9_36 + 43 and not necessary anymore. +# Add SetVideoDriver +# Update POL_Shortcut_Document +# +# KNOWN ISSUES: +# 1.6.x better performance +# 1.7.x health gauge +# 1.7.0-1.7.5 no music [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="the_witcher" PREFIX="TheWitcher_gog" -WORKING_WINE_VERSION="1.7.6" +WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - The Witcher Enhanced Edition Directors Cut" SHORTCUT_NAME="The Witcher Enhanced Edition DC" @@ -45,15 +54,27 @@ # Fix large dark polygons, (in rain and more) POL_Call POL_install_d3dx9_43 +################ +# GPU # +################ + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Asking about memory size of graphic card POL_SetupWindow_VMS "128" + +# Useful for Nvidia GPUs +# POL_Call POL_Install_physx + # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;" -POL_Shortcut_Document "$SHORTCUT_NAME" "$WINEPREFIX/drive_c/GOG Games/The Witcher Enhanced Edition Director's Cut/manual.pdf" +POL_Shortcut_Document "$SHORTCUT_NAME" "manual.pdf" # C:\GOG Games\The Witcher Enhanced Edition Director's Cut\readme.rtf POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-02-19 00-28) # Last revision : see changelog # Wine version used : 1.5.18, 1.6.1, 1.7.6, 3.0.3 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2012-02-19 00-28) # First script # [Dadu042] (2020-01-01) # Wine 1.7.6 (outdated) -> 3.0.3. Maybe POL_install_d3dx9_36 + 43 and not necessary anymore. # Add SetVideoDriver # Update POL_Shortcut_Document # # KNOWN ISSUES: # 1.6.x better performance # 1.7.x health gauge # 1.7.0-1.7.5 no music [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="the_witcher" PREFIX="TheWitcher_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - The Witcher Enhanced Edition Directors Cut" SHORTCUT_NAME="The Witcher Enhanced Edition DC" POL_SetupWindow_Init POL_SetupWindow_SetID 1065 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "CD Projekt RED" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "66ffe865f34e71ef2beb961748873459" "6d24dcb24f4776889e03715044ca8da0" "3060962cd3ef2ec68a9c02fdeb5ce839" "602a920d5e2c05437f70c5600911aca8" "296605a9b5e7acba6a59cd17b98a84c6" "a820dc0f09afefead9e06a9c37491c1b" "e5261e0eff49b83f48a384ece3050106" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Default interface leaks winprocs and crashes under Wine POL_Call POL_GoG_install "/nogui" # GoG work! Set_OS winxp # Fix black screen POL_Call POL_install_d3dx9_36 # Fix large dark polygons, (in rain and more) POL_Call POL_install_d3dx9_43 ################ # GPU # ################ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS "128" # Useful for Nvidia GPUs # POL_Call POL_Install_physx # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "launcher.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;RolePlaying;" POL_Shortcut_Document "$SHORTCUT_NAME" "manual.pdf" # C:\GOG Games\The Witcher Enhanced Edition Director's Cut\readme.rtf POL_SetupWindow_Close exit 0 Réponses |
MorningStarGG | Vendredi 23 Juin 2017 à 14:50 |
MorningStarGG
|
MessagesInstaller will no longer run with this script, but if I install it as an unlisted program it installs just fine. Réponses |
piratmartin | Mardi 25 Octobre 2016 à 12:45 |
piratmartin
|
MessagesProblem with invisible characters with eyes ball. I have to repeatedly run the game until they see the characters. No hint regarding invisible characters helped. Réponses |
Fangorn | Dimanche 1 Novembre 2015 à 22:21 |
Fangorn
|
Messages1) With Wine v.1.7.6 after some minutes og playing, sound being distorted, constantly audio underrun issues (in debug log were errors "err:alsa:wine_snd_pcm_recover underrun occurred"). After some googling, I found this Wine bug https://bugs.winehq.org/show_bug.cgi?id=35852 , and this https://bugs.winehq.org/show_bug.cgi?id=10495 . In comment of latest, I found solution - installed Wine 1.7.52-staging (with experimental PulseAudio support patches I guess), and played most of game with it. No more suffered sound underrun. 2) There was problem with puppeteer-lines and missing models, as described here https://appdb.winehq.org/objectManager.php?sClass=version&iId=26114&iTestingId=89846. Workaround ibidem. Réponses |
stormsaber | Vendredi 21 Novembre 2014 à 15:49 |
stormsaber
|
MessagesSerious graphical glitches, sticky / stuck key controls, and randomly glitchy audio. The first is the most serious, causing stretched polygons to randomly potrude from character models to screen edges in a way reminiscent or shadows or 'pupeteer strings'. Switching to another virtual terminal and then back again has a small chance to temporarily correct the problem. RéponsesVendredi 21 Novembre 2014 à 15:50
Vendredi 21 Novembre 2014 à 18:37
Lundi 24 Novembre 2014 à 21:25
Lundi 24 Novembre 2014 à 21:29
Lundi 24 Novembre 2014 à 21:32
|
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