Tomb Raider (2013)
Informations
Creator | Message |
---|---|
GNU_Raziel
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 1 DescriptionFrench :
ScreenshotsSource code#!/bin/bash # Date : (2013-04-14 21:00) # Last revision : N/A # Wine version used : 1.5.19 # Distribution used to test : Linux Mint Debian Edition x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken # CHANGELOG # [GNU_Raziel] (2013-04-14 21:00) # First script. # [Dadu042] (2020-03-28) # Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tomb Raider (2013)" SHORTCUT_NAME="Tomb Raider (2013)" SHORTCUT_NAME2="Tomb Raider 2013" PREFIX="Tomb_Raider_2013" EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="3.0.3" GAME_VMS="1024" STEAM_ID="203160" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1657 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Fix some game crash # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix for this game POL_Wine_X11Drv "GrabFullscreen" "Y" # Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time POL_Wine_DetectCard if [ "$DRVID" = "NVIDIA" ]; then POL_Wine_Direct3D "UseGLSL" "disabled" fi # Fix Flickering screen POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # 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" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;" POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;" # Fix mouse control when using StrickDrawOrdering - Thx to petch ## Begin Fix ## cd "$POL_USER_ROOT/tmp" POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf" POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe" POL_Wine_reboot # Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&' echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME" ## End Fix ## # Begin game installation # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Saturday 28 March 2020 at 23:38 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -8,6 +8,12 @@ # Only For : http://www.playonlinux.com # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken +# CHANGELOG +# [GNU_Raziel] (2013-04-14 21:00) +# First script. +# [Dadu042] (2020-03-28) +# Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested. + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -18,7 +24,7 @@ EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" -WORKING_WINE_VERSION="1.7.46-staging" +WORKING_WINE_VERSION="3.0.3" GAME_VMS="1024" STEAM_ID="203160" New source code#!/bin/bash # Date : (2013-04-14 21:00) # Last revision : N/A # Wine version used : 1.5.19 # Distribution used to test : Linux Mint Debian Edition x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken # CHANGELOG # [GNU_Raziel] (2013-04-14 21:00) # First script. # [Dadu042] (2020-03-28) # Wine "1.7.46-staging" (outdated) -> 3.0.3 . Not tested. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tomb Raider (2013)" SHORTCUT_NAME="Tomb Raider (2013)" SHORTCUT_NAME2="Tomb Raider 2013" PREFIX="Tomb_Raider_2013" EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="3.0.3" GAME_VMS="1024" STEAM_ID="203160" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1657 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Fix some game crash # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix for this game POL_Wine_X11Drv "GrabFullscreen" "Y" # Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time POL_Wine_DetectCard if [ "$DRVID" = "NVIDIA" ]; then POL_Wine_Direct3D "UseGLSL" "disabled" fi # Fix Flickering screen POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # 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" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;" POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;" # Fix mouse control when using StrickDrawOrdering - Thx to petch ## Begin Fix ## cd "$POL_USER_ROOT/tmp" POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf" POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe" POL_Wine_reboot # Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&' echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME" ## End Fix ## # Begin game installation # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close exit 0 Replies |
deri82 | Friday 10 July 2015 at 14:08 |
deri82
|
WarningThis update has not been approved yet by the team. Differences@@ -85,7 +85,7 @@ # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" -POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID +POL_Wine start /unix "steam.exe -no-dwrite" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2013-04-14 21:00) # Last revision : N/A # Wine version used : 1.5.19 # Distribution used to test : Linux Mint Debian Edition x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tomb Raider (2013)" SHORTCUT_NAME="Tomb Raider (2013)" SHORTCUT_NAME2="Tomb Raider 2013" PREFIX="Tomb_Raider_2013" EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="1.7.46-staging" GAME_VMS="1024" STEAM_ID="203160" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1657 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Fix some game crash # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix for this game POL_Wine_X11Drv "GrabFullscreen" "Y" # Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time POL_Wine_DetectCard if [ "$DRVID" = "NVIDIA" ]; then POL_Wine_Direct3D "UseGLSL" "disabled" fi # Fix Flickering screen POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # 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" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;" POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;" # Fix mouse control when using StrickDrawOrdering - Thx to petch ## Begin Fix ## cd "$POL_USER_ROOT/tmp" POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf" POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe" POL_Wine_reboot # Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&' echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME" ## End Fix ## # Begin game installation # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe -no-dwrite" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 10 July 2015 at 14:14
|
deri82 | Friday 10 July 2015 at 13:44 |
deri82
|
WarningThis update has not been approved yet by the team. Differences@@ -6,6 +6,7 @@ # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com +# wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -17,7 +18,7 @@ EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" -WORKING_WINE_VERSION="1.5.19" +WORKING_WINE_VERSION="1.7.46-staging" GAME_VMS="1024" STEAM_ID="203160" New source code#!/bin/bash # Date : (2013-04-14 21:00) # Last revision : N/A # Wine version used : 1.5.19 # Distribution used to test : Linux Mint Debian Edition x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # wine-staging has a fix for bug #33479 Multiple games (Guild Wars 2, Risen 2, Tomb Raider 2013): Raw input is broken [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Tomb Raider (2013)" SHORTCUT_NAME="Tomb Raider (2013)" SHORTCUT_NAME2="Tomb Raider 2013" PREFIX="Tomb_Raider_2013" EDITOR="Square Enix" GAME_URL="http://tombraider.com" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="1.7.46-staging" GAME_VMS="1024" STEAM_ID="203160" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/TR2k13/top.jpg" "http://files.playonlinux.com/resources/setups/TR2k13/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1657 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Fix some game crash # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Fix for this game POL_Wine_X11Drv "GrabFullscreen" "Y" # Increase performances - Nvidia Driver Only, crash games with ATI/AMD driver most of the time POL_Wine_DetectCard if [ "$DRVID" = "NVIDIA" ]; then POL_Wine_Direct3D "UseGLSL" "disabled" fi # Fix Flickering screen POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # 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" "$SHORTCUT_NAME.png" "steam://rungameid/$STEAM_ID" "Game;AdventureGame;" POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME2)" "" "" "Game;" # Fix mouse control when using StrickDrawOrdering - Thx to petch ## Begin Fix ## cd "$POL_USER_ROOT/tmp" POL_Download "http://files.playonlinux.com/nircmd.zip" "3d6d3f094633c5c97f8b15f8fe1023bf" POL_System_ExtractSingleFile "nircmd.zip" "nircmd.exe" "$WINEPREFIX/drive_c/windows/nircmd.exe" POL_Wine_reboot # Double quotes around "P"OL_Wine prevent POL getArgs to pickup this line, sorry for the hack POL_Shortcut_InsertBeforeWine "$SHORTCUT_NAME" '(sleep 10; "P"OL_Wine nircmd.exe win hide title "$SHORTCUT_NAME"; sleep 0.1; "P"OL_Wine nircmd.exe win hideshow title "$SHORTCUT_NAME")&' echo "wait" >> "$POL_USER_ROOT/shortcuts/$SHORTCUT_NAME" ## End Fix ## # Begin game installation # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished, do NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Pingouache | Friday 12 September 2014 at 20:27 |
Pingouache
|
MessageBonjour,
Je suis sous Linux Mint 17 (x64) et j'utilise la dernière version de POL (4.2.5). Je tente d'installer le jeu Tomb Raider 2013, présent dans la liste de jeux de POL. L'installeur passe par Steam : un Steam est installé sur le DD virtuel, le jeu est téléchargé via Steam, etc. Aucun souci pour l'installation du jeu (modulo le fait que j'ai du utiliser Wine 1.7.26 pour que cela fonctionne, et non la 1.7.3 comme proposé par défaut par POL, qui ne supporte pas bien Steam). J'ai par contre un souci pour lancer le jeu : l'écran de démarrage du jeu s'affiche bien, mais lorsque j'ai cliqué sur "Jouer", je suis resté bloqué sur un écran noir. Après avoir consulté le log, j'ai vu cette erreur : XIO: fatal IO error 11 (Ressource temporairement non disponible) on X server ":0" after 61 requests (61 known processed) with 1 events remaining. p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier deSetting breakpad minidump AppID = 203160 Steam_SetMinidumpSteamID: Caching Steam ID: 76561198142631290 [API loaded no] p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de[0912/185956:ERROR:renderer_main.cc(227)] Running without renderer sandbox Après une recherche sur Internet, il semblait que le souci pouvait être résolu en désinstallant le package p11-kit et en le remplaçant par p11-kit-i386. J'ai donc fait l'opération, et désormais je n'ai certes plus d'écran noir... mais plus rien ne se passe. Le nouveau message d'erreur que j'obtiens est désormais le suivant : Running wine-1.7.26 nircmd.exe win hideshow title (Working directory : /home/alain-nadine/.PlayOnLinux/wineprefix/Tomb_Raider_2013/drive_c/Program Files (x86)/Steam) X Error of failed request: BadWindow (invalid Window parameter) Major opcode of failed request: 10 (X_UnmapWindow) Resource id in failed request: 0x2800001 Serial number of failed request: 138 Current serial number in output stream: 142 C'est assez étrange et je ne sais pas comment m'en sortir...
Pour info, j'ai un APU AMD A6-6400K et j'utilise le pilote libre xserver-xorg-video-ati. RepliesFriday 12 September 2014 at 20:42
Friday 12 September 2014 at 21:22
Friday 12 September 2014 at 21:22
Friday 12 September 2014 at 21:27
Friday 12 September 2014 at 21:54
Friday 12 September 2014 at 22:43
Friday 12 September 2014 at 22:43
Friday 12 September 2014 at 22:49
Friday 12 September 2014 at 23:11
Friday 12 September 2014 at 23:30
|
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