Woodcutter Simulator 2013

Informations

Créateur Messages
Dadu042

Information

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

Informations

Plate-formes :
Téléchargements : 2910
Wine: 4.8

Retours d'expérience

Description

This game does NOT work (Wine 4.8). Perhaps a future version of Wine will help...

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-17 09-56)
# Last revision : (2019-05-17 09-56)
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Software version used of the software to write this script: 1.x ? (Start.exe : december 2012)
# 
# Game based on DirectX 9, X3DAudio1_7.dll, Nvidia Physx.
#
# Known issues :
# Wine 4.1: game crash as soon it start to load, nothing appear.
#
# Wine 4.8: game crash as soon it start to load, nothing appear.
# [05/17/19 10:28:38] - Running wine-4.8 woodcutter2013.exe (Working directory : /home/me/.PlayOnLinux/wineprefix/woodcutter_sim_2013/drive_c/Program Files/Woodcutter Simulator 2013)
# 002c:err:module:load_builtin_dll failed to load .so lib for builtin L"X3DAudio1_7.dll": libFAudio.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
# 002c:err:module:import_dll Loading library X3DAudio1_7.dll (which is needed by L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll") failed (error c000007a).
# 002c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll" failed, status c0000135


[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Woodcutter Simulator 2013"
PREFIX="woodcutter_sim_2013"
WORKING_WINE_VERSION="4.8"
AUTHOR="Dadu042"
EDITOR="UIG Entertainment"
GAME_URL="http://www.uieg.de"
 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
    
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"

POL_SetupWindow_message  "Warning: when the installer will ask you, You should disable automatic updates !.\n" "$TITLE"

if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "UIG GmbH Online.url"
        POL_Wine start /unix "$CDROM/Start.exe"
        POL_Wine_WaitExit "Start.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "woodcutter2013.exe" "$TITLE" ""
  
POL_Call POL_Install_VideoDriver

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 22:18
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -36,6 +36,8 @@
 POL_Debug_Init
     
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
     
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-17 09-56)
# Last revision : (2019-05-17 09-56)
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Software version used of the software to write this script: 1.x ? (Start.exe : december 2012)
# 
# Game based on DirectX 9, X3DAudio1_7.dll, Nvidia Physx.
#
# Known issues :
# Wine 4.1: game crash as soon it start to load, nothing appear.
#
# Wine 4.8: game crash as soon it start to load, nothing appear.
# [05/17/19 10:28:38] - Running wine-4.8 woodcutter2013.exe (Working directory : /home/me/.PlayOnLinux/wineprefix/woodcutter_sim_2013/drive_c/Program Files/Woodcutter Simulator 2013)
# 002c:err:module:load_builtin_dll failed to load .so lib for builtin L"X3DAudio1_7.dll": libFAudio.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
# 002c:err:module:import_dll Loading library X3DAudio1_7.dll (which is needed by L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll") failed (error c000007a).
# 002c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll" failed, status c0000135


[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Woodcutter Simulator 2013"
PREFIX="woodcutter_sim_2013"
WORKING_WINE_VERSION="4.8"
AUTHOR="Dadu042"
EDITOR="UIG Entertainment"
GAME_URL="http://www.uieg.de"
 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
    
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"

POL_SetupWindow_message  "Warning: when the installer will ask you, You should disable automatic updates !.\n" "$TITLE"

if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "UIG GmbH Online.url"
        POL_Wine start /unix "$CDROM/Start.exe"
        POL_Wine_WaitExit "Start.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "woodcutter2013.exe" "$TITLE" ""
  
POL_Call POL_Install_VideoDriver

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Vendredi 17 Mai 2019 à 11:11
Dadu042

Warning

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

Messages

Game does not run, even with the latest Wine (4.8) sad

Differences

@@ -0,0 +1,76 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2019-05-17 09-56)
+# Last revision : (2019-05-17 09-56)
+# Wine version used : see below
+# Distribution used to test : Ubuntu 19.04 x64
+# Script licence : GPL3
+# Program licence : Retail
+#
+# Playonlinux version used : 4.3.4
+#
+# Software version used of the software to write this script: 1.x ? (Start.exe : december 2012)
+# 
+# Game based on DirectX 9, X3DAudio1_7.dll, Nvidia Physx.
+#
+# Known issues :
+# Wine 4.1: game crash as soon it start to load, nothing appear.
+#
+# Wine 4.8: game crash as soon it start to load, nothing appear.
+# [05/17/19 10:28:38] - Running wine-4.8 woodcutter2013.exe (Working directory : /home/me/.PlayOnLinux/wineprefix/woodcutter_sim_2013/drive_c/Program Files/Woodcutter Simulator 2013)
+# 002c:err:module:load_builtin_dll failed to load .so lib for builtin L"X3DAudio1_7.dll": libFAudio.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
+# 002c:err:module:import_dll Loading library X3DAudio1_7.dll (which is needed by L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll") failed (error c000007a).
+# 002c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll" failed, status c0000135
+
+
+[ -z "$PLAYONLINUX" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+    
+TITLE="Woodcutter Simulator 2013"
+PREFIX="woodcutter_sim_2013"
+WORKING_WINE_VERSION="4.8"
+AUTHOR="Dadu042"
+EDITOR="UIG Entertainment"
+GAME_URL="http://www.uieg.de"
+ 
+POL_SetupWindow_Init
+POL_Debug_Init
+    
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+    
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_System_TmpCreate "$TITLE"
+
+Set_OS "win7"
+
+###############
+# Go          #
+###############
+
+POL_SetupWindow_InstallMethod "LOCAL,CD"
+
+POL_SetupWindow_message  "Warning: when the installer will ask you, You should disable automatic updates !.\n" "$TITLE"
+
+if [ "$INSTALL_METHOD" == "LOCAL" ]; then
+        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"
+        cd "$POL_System_TmpDir"
+else
+        POL_SetupWindow_cdrom
+        POL_SetupWindow_check_cdrom "UIG GmbH Online.url"
+        POL_Wine start /unix "$CDROM/Start.exe"
+        POL_Wine_WaitExit "Start.exe"
+        cd "$POL_System_TmpDir"
+fi
+
+POL_Shortcut "woodcutter2013.exe" "$TITLE" ""
+  
+POL_Call POL_Install_VideoDriver
+
+POL_System_TmpDelete
+POL_SetupWindow_Close
+exit 0

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-17 09-56)
# Last revision : (2019-05-17 09-56)
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Software version used of the software to write this script: 1.x ? (Start.exe : december 2012)
# 
# Game based on DirectX 9, X3DAudio1_7.dll, Nvidia Physx.
#
# Known issues :
# Wine 4.1: game crash as soon it start to load, nothing appear.
#
# Wine 4.8: game crash as soon it start to load, nothing appear.
# [05/17/19 10:28:38] - Running wine-4.8 woodcutter2013.exe (Working directory : /home/me/.PlayOnLinux/wineprefix/woodcutter_sim_2013/drive_c/Program Files/Woodcutter Simulator 2013)
# 002c:err:module:load_builtin_dll failed to load .so lib for builtin L"X3DAudio1_7.dll": libFAudio.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
# 002c:err:module:import_dll Loading library X3DAudio1_7.dll (which is needed by L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll") failed (error c000007a).
# 002c:err:module:LdrInitializeThunk Importing dlls for L"C:\\Program Files\\Woodcutter Simulator 2013\\woodcutter2013.dll" failed, status c0000135


[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Woodcutter Simulator 2013"
PREFIX="woodcutter_sim_2013"
WORKING_WINE_VERSION="4.8"
AUTHOR="Dadu042"
EDITOR="UIG Entertainment"
GAME_URL="http://www.uieg.de"
 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
    
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"

POL_SetupWindow_message  "Warning: when the installer will ask you, You should disable automatic updates !.\n" "$TITLE"

if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "UIG GmbH Online.url"
        POL_Wine start /unix "$CDROM/Start.exe"
        POL_Wine_WaitExit "Start.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "woodcutter2013.exe" "$TITLE" ""
  
POL_Call POL_Install_VideoDriver

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Edité par Dadu042