Fallout : New Vegas
Informations
Créateur | Messages |
---|---|
GNU_Raziel
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience6 3 DescriptionPost-apocalyptic action role-playing open world video game, 2010. Wikipedia.
Script notes (2010 or 2014) : Français : Comme Fallout 3, ce jeu souffre d'un bug plutôt gênant sous wine. Toute la scène avec le docteur au début ne fonctionne pas correctement, il vous faudra appuyer de façon répétée sur Echap pour aller dans les options et en revenir afin que la scène se déroule en entier, sans son ni sous-titres. Une fois hors de la maison, je jeu fonctionne normalement. Captures d'écranCode source#!/bin/bash # Date : (2010-29-10 22-00) # Last revision : see changelog # Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6, 3.0.3 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2010-29-10 22-00) # Initial script # [ ] (2013-01-22) # ? # [Petch] (2015-06-07) # Remove unused translations, update Wine version used to 1.6.2 # [Dadu042] (2013-01-22) # Fix a sad issue (Wine 3.O.2 instead of 3.0.2 (letter O instead of zero)). I replace with 3.0.5 # [Dadu042] (2020-01-07) # Wine 3.0.5 -> 3.0.3 (because of POL 4.2.12, still widely installed). # Add POL_RequiredVersion # Improve POL_Shortcut [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" WORKING_WINE_VERSION="3.0.3" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_DVD="Version DVD" LNG_STEAM="Version Steam Store" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE" LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de\n256Mo de mémoire." LNG_VC90_DL="Téléchargement de MSvc90..." LNG_VC90_INSTALL="Installation MSvc90..." LNG_GAME_WARNING="Vous devez contourner les protections anti-piratage de ce jeu\npour qu'il fonctionne avec wine." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_DVD="DVD Version" LNG_STEAM="Steam Store Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than\n256Mb of memory." LNG_VC90_DL="Downloading MSvc90..." LNG_VC90_INSTALL="Installing MSvc90..." LNG_GAME_WARNING="You must disable anti-piracy protections of this game\nif you want to play it with wine." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$PREFIX" POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between DVD and Digital Download version POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL" # Installing mandatory components Set_OS "win7" POL_Call POL_Install_quartz POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "22380" 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 "Setup.exe" POL_Wine start /unix "$CDROM/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/22380 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 # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS #Fix for this game # Set Graphic Card informations keys for wine POL_Wine_SetVideoDriver # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Game protection warning #if [ "$INSTALL_METHOD" == "DVD" ]; then # POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE" #fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
f4th0m | Mercredi 6 Mars 2024 à 1:57 |
f4th0m
|
MessagesHi! This script does not work any more, it fails with mismacth on steaminstaller: Réponses |
Dadu042 | Mardi 7 Janvier 2020 à 20:49 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,18 +1,33 @@ #!/bin/bash # Date : (2010-29-10 22-00) -# Last revision : (2013-07-21 11:00) -# Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6 +# Last revision : see changelog +# Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6, 3.0.3 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com +# + +# CHANGELOG +# [GNU_Raziel] (2010-29-10 22-00) +# Initial script +# [ ] (2013-01-22) +# ? +# [Petch] (2015-06-07) +# Remove unused translations, update Wine version used to 1.6.2 +# [Dadu042] (2013-01-22) +# Fix a sad issue (Wine 3.O.2 instead of 3.0.2 (letter O instead of zero)). I replace with 3.0.5 +# [Dadu042] (2020-01-07) +# Wine 3.0.5 -> 3.0.3 (because of POL 4.2.12, still widely installed). +# Add POL_RequiredVersion +# Improve POL_Shortcut [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" -WORKING_WINE_VERSION="3.0.5" +WORKING_WINE_VERSION="3.0.3" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then @@ -58,6 +73,8 @@ POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$PREFIX" +POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" @@ -108,7 +125,7 @@ if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else - POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" + POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Game protection warning Nouveau code source#!/bin/bash # Date : (2010-29-10 22-00) # Last revision : see changelog # Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6, 3.0.3 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2010-29-10 22-00) # Initial script # [ ] (2013-01-22) # ? # [Petch] (2015-06-07) # Remove unused translations, update Wine version used to 1.6.2 # [Dadu042] (2013-01-22) # Fix a sad issue (Wine 3.O.2 instead of 3.0.2 (letter O instead of zero)). I replace with 3.0.5 # [Dadu042] (2020-01-07) # Wine 3.0.5 -> 3.0.3 (because of POL 4.2.12, still widely installed). # Add POL_RequiredVersion # Improve POL_Shortcut [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" WORKING_WINE_VERSION="3.0.3" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_DVD="Version DVD" LNG_STEAM="Version Steam Store" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE" LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de\n256Mo de mémoire." LNG_VC90_DL="Téléchargement de MSvc90..." LNG_VC90_INSTALL="Installation MSvc90..." LNG_GAME_WARNING="Vous devez contourner les protections anti-piratage de ce jeu\npour qu'il fonctionne avec wine." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_DVD="DVD Version" LNG_STEAM="Steam Store Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than\n256Mb of memory." LNG_VC90_DL="Downloading MSvc90..." LNG_VC90_INSTALL="Installing MSvc90..." LNG_GAME_WARNING="You must disable anti-piracy protections of this game\nif you want to play it with wine." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$PREFIX" POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between DVD and Digital Download version POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL" # Installing mandatory components Set_OS "win7" POL_Call POL_Install_quartz POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "22380" 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 "Setup.exe" POL_Wine start /unix "$CDROM/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/22380 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 # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS #Fix for this game # Set Graphic Card informations keys for wine POL_Wine_SetVideoDriver # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Game protection warning #if [ "$INSTALL_METHOD" == "DVD" ]; then # POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE" #fi POL_SetupWindow_Close exit 0 Réponses |
Dadu042 | Samedi 18 Mai 2019 à 21:20 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFix a sad issue (Wine 3.O.2 instead of 3.0.2 (letter O instead of zero)). I replace with 3.0.5 Differences@@ -12,7 +12,7 @@ TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" -WORKING_WINE_VERSION="3.O.2" +WORKING_WINE_VERSION="3.0.5" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then Nouveau code source#!/bin/bash # Date : (2010-29-10 22-00) # Last revision : (2013-07-21 11:00) # Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6 # 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="Fallout : New Vegas" PREFIX="FalloutNewVegas" WORKING_WINE_VERSION="3.0.5" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_DVD="Version DVD" LNG_STEAM="Version Steam Store" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE" LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de\n256Mo de mémoire." LNG_VC90_DL="Téléchargement de MSvc90..." LNG_VC90_INSTALL="Installation MSvc90..." LNG_GAME_WARNING="Vous devez contourner les protections anti-piratage de ce jeu\npour qu'il fonctionne avec wine." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_DVD="DVD Version" LNG_STEAM="Steam Store Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than\n256Mb of memory." LNG_VC90_DL="Downloading MSvc90..." LNG_VC90_INSTALL="Installing MSvc90..." LNG_GAME_WARNING="You must disable anti-piracy protections of this game\nif you want to play it with wine." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$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" # Choose between DVD and Digital Download version POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL" # Installing mandatory components Set_OS "win7" POL_Call POL_Install_quartz POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "22380" 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 "Setup.exe" POL_Wine start /unix "$CDROM/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/22380 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 # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS #Fix for this game # Set Graphic Card informations keys for wine POL_Wine_SetVideoDriver # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" fi # Game protection warning #if [ "$INSTALL_METHOD" == "DVD" ]; then # POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE" #fi POL_SetupWindow_Close exit 0 Réponses |
Quentin PÂRIS | Dimanche 9 Décembre 2018 à 14:10 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -12,7 +12,7 @@ TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" -WORKING_WINE_VERSION="1.6" +WORKING_WINE_VERSION="3.O.2" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then Nouveau code source#!/bin/bash # Date : (2010-29-10 22-00) # Last revision : (2013-07-21 11:00) # Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6 # 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="Fallout : New Vegas" PREFIX="FalloutNewVegas" WORKING_WINE_VERSION="3.O.2" GAME_VMS="256" if [ "$POL_LANG" == "fr" ]; then LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" LNG_DVD="Version DVD" LNG_STEAM="Version Steam Store" LNG_DDV="Version Digital Download" LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE" LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera terminée sous peine de devoir recommencer l'installation." LNG_INSTALL_ON="Installation en cours..." LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de\n256Mo de mémoire." LNG_VC90_DL="Téléchargement de MSvc90..." LNG_VC90_INSTALL="Installation MSvc90..." LNG_GAME_WARNING="Vous devez contourner les protections anti-piratage de ce jeu\npour qu'il fonctionne avec wine." LNG_SUCCES="$TITLE a été installé avec succès." else LNG_CHOOSE_MEDIA="What version do you have?" LNG_DVD="DVD Version" LNG_STEAM="Steam Store Version" LNG_DDV="Digital Download Version" LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation." LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation." LNG_INSTALL_ON="Installation in progress..." LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than\n256Mb of memory." LNG_VC90_DL="Downloading MSvc90..." LNG_VC90_INSTALL="Installing MSvc90..." LNG_GAME_WARNING="You must disable anti-piracy protections of this game\nif you want to play it with wine." LNG_SUCCES="$TITLE has been installed successfully." fi #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$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" # Choose between DVD and Digital Download version POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL" # Installing mandatory components Set_OS "win7" POL_Call POL_Install_quartz POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "22380" 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 "Setup.exe" POL_Wine start /unix "$CDROM/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/22380 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 # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS #Fix for this game # Set Graphic Card informations keys for wine POL_Wine_SetVideoDriver # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" fi # Game protection warning #if [ "$INSTALL_METHOD" == "DVD" ]; then # POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE" #fi POL_SetupWindow_Close exit 0 Réponses |
Haronniin | Mercredi 5 Décembre 2018 à 17:10 |
Haronniin
|
MessagesSince that last comment is a year old, I wanted to provide my 2 cents. I have the game running fine, for the most part. I'm experiencing some stuttering when there's a lot going on (mass combat, etc.) Firstly, my specs: MacBook Air (13-inch, 2017) PlayOnMac 4.3.3 Wine 2.0.2 Initially I ran it using Wine 2.0.2. There were a lot of image glitches (white squares popping up and massive lag/stuttering during combat). Wine 3.0.4 I jumped all the way up to 3.0.4. It ran okay. The white squares were gone, and normal combat was fine (still stuttered when there were a lot of mobs). The biggest issue I had was that the game wouldn't actually close when I tried to Exit the game. I'd have to [Alt]+[Cmd]+[Esc] (the Mac version of [Ctrl]+[Alt]+[Del]) to force quit it. Wine 3.0.2 Works best of the Wine versions I've tried so far. I'm able to play and exit the game without issue. I still get a lot of stuttering when there's a lot of mobs in play. Sometimes even during cirtical kill animation scenes. I've tried increasing video RAM from the required 64 to 128 but that hasn't aleviated the problem. If anyone has suggestions as to what might help the game run smoothly I'd be mighty appreciative. Réponses |
r7s | Dimanche 1 Octobre 2017 à 13:53 |
r7s
|
MessagesI managed to run the GOG version of the game on High Sierra. All I had to do was to change the Wine version from 1.6 to 2.0.2. I tried using the newest one (2.18), but the game crashed after the intro video. With 2.0.2 everything seems to work well. Réponses |
horrigan | Mercredi 4 Mai 2016 à 6:29 |
horrigan
|
MessagesFor people having page faults: try NVAC mod, it catches a lot of recoverable errors http://www.nexusmods.com/newvegas/mods/53635/? RéponsesMercredi 4 Mai 2016 à 7:27
|
Hellweek | Mercredi 6 Janvier 2016 à 5:28 |
Hellweek
|
MessagesI was hoping to get some help. I was playing around with modds. Had the script extender anti crash anti stutter all going well added the EVE new plasma effects. Then I strated mucking around in the .ini file bumped up the ram allocation and the number of cores the game uses...Mistake. It made the colors look all washed out, and the Panel bar at the top will not disappear. I replaced the files with the originals, but the bar still wont go away. I deleted and reinstalled the whole vitual drive. Bar still wont go away. It does not show up in the other games that i play only new vegas. Im trying to install it into my skyrim drive through steam to see if i can fiddle around there any help would be appreciated. I just want that stupid bar to go away. thanks
Réponses |
WP40 | Jeudi 2 Juillet 2015 à 3:34 |
WP40
|
MessagesI followed the download instructions exactly how it said and it was working up until the installation process. The Steam thing will open, I sign in and download it. I can play with no problems and can save, but the installer never recognizes that I finished the installation. I also keep getting an error with steamwebhelper.exe along with the problem. Due to the installer never recognizing that I downloaded the game, whenever I close X11, all save files are lost, I can't reopen Steam, and I have to redo the entire installer to play again. Please help. Réponses |
cydon | Mardi 30 Juin 2015 à 12:41 |
cydon
|
MessagesCan someone help me? I'm new to this sort of thing. worked trough the initial cutscene and then crashed Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x00b4f0b9).
RéponsesDimanche 1 Octobre 2017 à 13:52
|
OrangeSn0w | Lundi 8 Juin 2015 à 15:18 |
OrangeSn0w
|
MessagesThis game didn't run when I first installed it. I installed it normally with the regular method, and got freezing on the loading screens. I googled around and didn't find anything on it, but the game worked fine for me after installing steam as a PlayOnLinux app and installing new vegas through that. Réponses |
petch | Dimanche 7 Juin 2015 à 21:01 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesRemove unused translations, update Wine version used to 1.6.2 Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2010-29-10 22-00) -# Last revision : (2013-07-21 11:00) -# Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6 +# Last revision : (2015-06-07 21:00) +# Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6, 1.6.2 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail @@ -12,43 +12,9 @@ TITLE="Fallout : New Vegas" PREFIX="FalloutNewVegas" -WORKING_WINE_VERSION="1.6" +WORKING_WINE_VERSION="1.6.2" GAME_VMS="256" -if [ "$POL_LANG" == "fr" ]; then -LNG_CHOOSE_MEDIA="Quelle version possédez-vous?" -LNG_DVD="Version DVD" -LNG_STEAM="Version Steam Store" -LNG_DDV="Version Digital Download" -LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE" -LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait." -LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation." -LNG_WAIT_STEAM_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu Steam\nsera terminée sous peine de devoir recommencer l'installation." -LNG_INSTALL_ON="Installation en cours..." -LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" -LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de\n256Mo de mémoire." -LNG_VC90_DL="Téléchargement de MSvc90..." -LNG_VC90_INSTALL="Installation MSvc90..." -LNG_GAME_WARNING="Vous devez contourner les protections anti-piratage de ce jeu\npour qu'il fonctionne avec wine." -LNG_SUCCES="$TITLE a été installé avec succès." -else -LNG_CHOOSE_MEDIA="What version do you have?" -LNG_DVD="DVD Version" -LNG_STEAM="Steam Store Version" -LNG_DDV="Digital Download Version" -LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable" -LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done." -LNG_WAIT_END="Click on \"Forward\" ONLY when the game installation is finished\nor you will have to redo the installation." -LNG_WAIT_STEAM_END="Click on \"Forward\" ONLY when Steam game installation\nwill be finished or you will have to redo the installation." -LNG_INSTALL_ON="Installation in progress..." -LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" -LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than\n256Mb of memory." -LNG_VC90_DL="Downloading MSvc90..." -LNG_VC90_INSTALL="Installing MSvc90..." -LNG_GAME_WARNING="You must disable anti-piracy protections of this game\nif you want to play it with wine." -LNG_SUCCES="$TITLE has been installed successfully." -fi - #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init Nouveau code source#!/bin/bash # Date : (2010-29-10 22-00) # Last revision : (2015-06-07 21:00) # Wine version used : 1.3.8, 1.3.9, 1.3.27, 1.6, 1.6.2 # 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="Fallout : New Vegas" PREFIX="FalloutNewVegas" WORKING_WINE_VERSION="1.6.2" GAME_VMS="256" #starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/FNV/top.jpg" "http://files.playonlinux.com/resources/setups/FNV/left.jpg" "$TITLE" POL_SetupWindow_Init # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bethesda Softworks" "http://fallout.bethsoft.com/" "GNU_Raziel" "$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" # Choose between DVD and Digital Download version POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL" # Installing mandatory components Set_OS "win7" POL_Call POL_Install_quartz POL_Call POL_Install_steam POL_Call POL_Install_dxfullsetup # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "22380" 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 "Setup.exe" POL_Wine start /unix "$CDROM/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/22380 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 # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS #Fix for this game # Set Graphic Card informations keys for wine POL_Wine_SetVideoDriver # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/22380" else POL_Shortcut "FalloutNVLauncher.exe" "$TITLE" "$TITLE.png" "" fi # Game protection warning #if [ "$INSTALL_METHOD" == "DVD" ]; then # POL_SetupWindow_message "$(eval_gettext 'You must disable anti-piracy protections of this game\nif you want to play it with wine.')" "$TITLE" #fi POL_SetupWindow_Close exit 0 Réponses |
OrangeSn0w | Dimanche 7 Juin 2015 à 14:18 |
OrangeSn0w
|
MessagesThis game didn't run when I first installed it. I installed it normally with the regular method, and got freezing on the loading screens. I googled around and didn't find anything on it, but the game worked fine for me after installing steam as a PlayOnLinux app and installing new vegas through that. RéponsesDimanche 7 Juin 2015 à 20:59
Lundi 8 Juin 2015 à 15:19
Lundi 8 Juin 2015 à 15:49
|
afogl001 | Mardi 25 Novembre 2014 à 2:33 |
afogl001
|
MessagesFallout NV doesn't work at all for me. Boots great and I can navigate around with my mouse, to include getting through the initial cut-scene, but the moment I hit any key on my keyboard it instantly crashes, with a crash log. I don't see anywhere to attach it in its entirety, but here's a few interesting lines (I think...) I'm very new to PlayOnLinux but I did try running Wine 1.7 when 1.6 didn't work with same result. Also tried a different keyboard. I'm running AMD R7 265, AMD FX4300, and an up-to-date Kubuntu 14.10. I'd love to get this working so any suggestions would be appreciated!
Unhandled exception: page fault on read access to 0x0000000c in 32-bit code (0x7def4c90). ....... 17 0x7b867b10 __wine_kernel_init+0xbbf() in kernel32 (0xffb19358) Réponses |
xge59310 | Mardi 22 Juillet 2014 à 6:06 |
xge59310
|
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