Fallout : New Vegas

Informations

Creator Message
GNU_Raziel

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 102946
Wine: 3.0.3

Feedbacks

Description

Post-apocalyptic action role-playing open world video game, 2010. Wikipedia.

Appdb.winehq.org

 

Script notes (2010 or 2014) :
English : When I came to the scene where you see the fan in the ceiling, I had to press Escape and then Continue for the game to continue. You have to do this until you get out of bed. Also, I had no sound when doing this, and no subtitles so I don't really know what was said. From the moment you get out of bed though, the game will be running perfectly.

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.

Screenshots

MiniatureMiniature

Source code

#!/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:

Contribute
Member Message
f4th0m Wednesday 6 March 2024 at 1:57
f4th0m Anonymous

Message

Hi!

This script does not work any more, it fails with mismacth on steaminstaller:

Replies

Dadu042 Tuesday 7 January 2020 at 20:49
Dadu042

Information

This update has been approved by the team.

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

New source code

#!/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

Replies

Dadu042 Saturday 18 May 2019 at 21:20
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Fix 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

New source code

#!/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

Replies

Quentin PÂRIS Sunday 9 December 2018 at 14:10
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

New source code

#!/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

Replies

Haronniin Wednesday 5 December 2018 at 17:10
Haronniin Anonymous

Message

Since 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)
macOS 10.14.1 (Mojave)
2.2 GHz Intel Core i7
8 GB 1600 MHz DDR3
Intel HD Graphics 6000 1536 MB

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. 

Replies

r7s Sunday 1 October 2017 at 13:53
r7s Anonymous

Message

I 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.

Replies

horrigan Wednesday 4 May 2016 at 6:29
horrigan Anonymous

Message

For people having page faults: try NVAC mod, it catches a lot of recoverable errors http://www.nexusmods.com/newvegas/mods/53635/?

I was having a startup page fault NVAC couldn't handle and what helped me was removing all library overrides  (I don't really remember how they got overriden in the first place, maybe some old POL script did that or something)

 

Replies

Anonymous
Wednesday 4 May 2016 at 7:27
Emm, scratch that last one, still having problems
Hellweek Wednesday 6 January 2016 at 5:28
Hellweek Anonymous

Message

I 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

 

Replies

WP40 Thursday 2 July 2015 at 3:34
WP40 Anonymous

Message

I 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.

Replies

cydon Tuesday 30 June 2015 at 12:41
cydon Anonymous

Message

Can someone help me? I'm new to this sort of thing. worked trough the initial cutscene and then crashed
. Im on Mavericks if changes anything. processor 2.6 GHz Intel Core i5 memory 16 GB 1600 MHz DDR3 graphics Intel Iris 1536 MB

Unhandled exception: page fault on read access to 0x00000000 in 32-bit code (0x00b4f0b9).
Register dump:
 CS:001b SS:0023 DS:0023 ES:0023 FS:1087 GS:000f
 EIP:00b4f0b9 ESP:16e1eb8c EBP:16e1f42c EFLAGS:00010206(  R- --  I   - -P- )
 EAX:00000000 EBX:048e49f4 ECX:a077f6f4 EDX:166b8f40
 ESI:00000000 EDI:047aec5c
Stack dump:
0x16e1eb8c:  0000001d 047aec5c 973c3579 7bc75f75
0x16e1eb9c:  4c43a740 00000000 00000002 16e1ebd8
0x16e1ebac:  7bc284b2 00110064 01f97740 16e1ebe8
0x16e1ebbc:  7bc3bf47 4a6b6000 4c432160 16e1ebe8
0x16e1ebcc:  16e1ebf0 4c432158 16e1ebf0 16e1ec68
0x16e1ebdc:  7bc3f737 7bc3f3bd 16e1ec80 16e1ec68
0210: sel=1087 base=7fec0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x00b4f0b9 in falloutnv (+0x74f0b9) (0x16e1f42c)
  1 0x00611d48 in falloutnv (+0x211d47) (0x16e1f588)
  2 0x00605414 in falloutnv (+0x205413) (0x16e1f5ac)
  3 0x0043edbb in falloutnv (+0x3edba) (0x16e1f5e0)
  4 0x00c36e34 in falloutnv (+0x836e33) (0x16e1f5ec)
  5 0x00c38327 in falloutnv (+0x838326) (0x16e1f680)
  6 0x00c39e4f in falloutnv (+0x839e4e) (0x16e1f688)
  7 0x7bc75f5c in <wine-loader> (+0x7bc75f5b) (0x16e1f698)
  8 0x7bc75fa2 in <wine-loader> (+0x7bc75fa1) (0x16e1f728)
  9 0x7bc75f22 in <wine-loader> (+0x7bc75f21) (0x16e1f748)
  10 0x7bc7d100 in <wine-loader> (+0x7bc7d0ff) (0x16e1ff88)
  11 0x973c35fb (0x16e1ffa8)
  12 0x973c3485 (0x16e1ffc8)
  13 0x973c8cf2 (0x16e1ffec)
0x00b4f0b9: movl    0x0(%esi),%eax
Modules:
Module    Address            Debug info    Name (44 modules)
ELF           0-82001000    Stabs           <wine-loader>
PE      340000-  356000    Deferred        xinput1_3
PE      400000- 1400000    Deferred        falloutnv
PE     1400000- 17c8000    Deferred        d3dx9_38
PE     17d0000- 1903000    Deferred        libvorbis
PE    10000000-1001e000    Deferred        libvorbisfile
PE    18000000-18068000    Deferred        binkw32
PE    35500000-35708000    Deferred        quartz
PE    3b400000-3b41d000    Deferred        steam_api
PE    405b0000-405b4000    Deferred        version
PE    405d0000-405d4000    Deferred        wsock32
PE    42390000-423bf000    Deferred        comctl32
PE    424c0000-424fb000    Deferred        user32
PE    42640000-42647000    Deferred        gdi32
PE    42780000-42784000    Deferred        advapi32
PE    43010000-43014000    Deferred        d3d9
PE    43050000-43054000    Deferred        wined3d
PE    431e0000-431e4000    Deferred        opengl32
PE    43300000-4330e000    Deferred        setupapi
PE    43390000-43394000    Deferred        rpcrt4
PE    43430000-4358d000    Deferred        shell32
PE    436a0000-436a8000    Deferred        shlwapi
PE    43730000-43738000    Deferred        ole32
PE    438a0000-438a4000    Deferred        ws2_32
PE    438d0000-438d4000    Deferred        iphlpapi
PE    43900000-43904000    Deferred        msvcrt
PE    439b0000-439b4000    Deferred        dinput8
PE    439d0000-43a47000    Deferred        winmm
PE    43aa0000-43aa9000    Deferred        msacm32
PE    43ad0000-43ad4000    Deferred        dsound
PE    43bc0000-43bc4000    Deferred        winex11
PE    43e00000-43e04000    Deferred        uxtheme
PE    447e0000-447e4000    Deferred        imm32
PE    45570000-4557b000    Deferred        dinput
PE    455d0000-455d4000    Deferred        mmdevapi
PE    45600000-45603000    Deferred        winecoreaudio
PE    46010000-46018000    Deferred        oleaut32
PE    49c00000-49c06000    Deferred        devenum
PE    49c40000-49c43000    Deferred        avicap32
PE    49cd0000-49cd3000    Deferred        msacm32
PE    49cf0000-49cf3000    Deferred        midimap
PE    49d10000-49d13000    Deferred        winemp3
PE    7b810000-7b868000    Deferred        kernel32
PE    7bc10000-7bc14000    Deferred        ntdll
Threads:
process  tid      prio (all id:s are in hex)
0000000e services.exe
    0000001e    0
    0000001d    0
    00000014    0
    00000010    0
    0000000f    0
00000012 winedevice.exe
    0000001c    0
    00000019    0
    00000017    0
    00000013    0
0000001a plugplay.exe
    00000020    0
    0000001f    0
    0000001b    0
00000023 explorer.exe
    00000025    0
    00000024    0
0000002b (D) C:\Program Files\Bethesda Softworks\Fallout New Vegas\FalloutNV.exe
    00000047    0
    00000046    0
    00000040    0
    0000003e   15
    0000003d    0
    0000003c    0 <==
    0000003a   -1
    00000039    1
    00000038    1
    00000037   15
    00000036    0
    00000035    0
    00000034   -1
    00000032    0
    00000031    0
    00000030    0
    0000002f    0
    0000002e    0
    0000002d    0
    0000002c    0
System information:
    Wine build: wine-1.6
    Platform: i386
    Host system: Darwin
    Host version: 13.4.0

 

Replies

Anonymous
Sunday 1 October 2017 at 13:52
I had the same problem and I fixed it by changing Wine version to 2.0.2.
OrangeSn0w Monday 8 June 2015 at 15:18
OrangeSn0w Anonymous

Message

This 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. 

Replies

petch Sunday 7 June 2015 at 21:01
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Remove 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

New source code

#!/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

Replies

OrangeSn0w Sunday 7 June 2015 at 14:18
OrangeSn0w Anonymous

Message

This 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. 

Replies

Sunday 7 June 2015 at 20:59
Well, for one this script a Wine version (1.6) that's no longer compatible with Steam (or rather, that Steam is no longer compatible with).
This script should be updated, preferably by somebody that can test it (so, who has the game)
Anonymous
Monday 8 June 2015 at 15:19
I'd be happy to test it, I'm just not sure how to do that
Monday 8 June 2015 at 15:49
I submitted a script using Wine 1.6.2, you can click the button "Try this update" next to it to give it a try.
Or, if the playonlinux:// URL scheme is not registered into your browser, you can copy/paste de updated script source to a local file, then use Tools > Run a local script or playonlinux-bash from command-line to run it
afogl001 Tuesday 25 November 2014 at 2:33
afogl001 Anonymous

Message

Fallout 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).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:7def4c90 ESP:0033f430 EBP:0033f598 EFLAGS:00210246(  R- --  I  Z- -P- )
 EAX:00000000 EBX:7defa618 ECX:0033f430 EDX:00000000
 ESI:00175b88 EDI:00000046

.......

  17 0x7b867b10 __wine_kernel_init+0xbbf() in kernel32 (0xffb19358)
  18 0x7bc54b73 __wine_process_init+0x182() in ntdll (0xffb193e8)
  19 0xf7527242 wine_init+0x2a1() in libwine.so.1 (0xffb19448)
  20 0x7bf00e7b main+0x7a() in <wine-loader> (0xffb19888)
  21 0xf7349a83 __libc_start_main+0xf2() in libc.so.6 (0x00000000)

Replies

Anonymous
Tuesday 25 November 2014 at 2:34
woops, also, I tried PlayOnLinux 4.2.1 and 4.2.5
Anonymous
Thursday 27 November 2014 at 7:33
I'm had the exact same problem. Ubuntu 14.04, GeForce GT 720M (not sure if it is relevant).
Try to use wine 1.3.27. Worked for me.
Anonymous
Thursday 27 November 2014 at 7:34
(I had, sorry for the "'m" ;) )
xge59310 Tuesday 22 July 2014 at 6:06
xge59310 Anonymous

Message

OS Ubuntu 14.04

GFX Nvidia 770GTX

Runs well. Minus some glitching near large bodies of water.

Replies

Anonymous
Tuesday 26 August 2014 at 19:51
OS Crunchbang 10 32 Bits
Anonymous
Tuesday 26 August 2014 at 19:52
I'm trying to install it. How to get back saves done on wondows ?