Magicka

Informations

Creator Message
GNU_Raziel

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 26232
Wine: 2.22

Feedbacks

Description

In Magicka (2011), you play a wizard in a fantasy world of Norse mythology. Your quest is to capture the evil wizard who has turned the world into hell. Isometric perspective and 3D.

Wikipedia.

Screenshots

MiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date : (2011-07-16 21:00)
# Last revision : see changelog
# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
# Distribution used to test : Linux Mint 11 x64, Arch Linux
# Author : GNU_Raziel, m1kc
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2011-07-16 21:00)
#   Initial script.
# [m1kc] (2014-08-26 12:28)
#   ?
# [Dadu042] (2020-01-27 23:30)
#   Wine 1.7.24 (outdated) -> 2.22

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Magicka"
TITLE_DEMO="Magicka (Demo)"
PREFIX="magicka"
EDITOR="Arrowhead Game Studios"
GAME_URL="http://www.magickagame.com/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="2.22"
GAME_VMS="256"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/magicka/top.jpg" "http://files.playonlinux.com/resources/setups/magicka/left.jpg" "$TITLE"
POL_SetupWindow_Init

# 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 "x86" # For dotnet35
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between Steam and other Digital Download versions
POL_SetupWindow_InstallMethod "STEAM_DEMO,STEAM,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xna31
POL_Call POL_Install_dotnet35

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# The game refuses to run without GLSL, so we keep it.
# POL_Wine_Direct3D "UseGLSL" "disabled"

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Mandatory pre-install fix for steam
[ "$INSTALL_METHOD" == "STEAM_DEMO" ] && { STEAM_ID="73050"; SHORTCUT_NAME="$TITLE_DEMO"; }
[ "$INSTALL_METHOD" == "STEAM" ] && { STEAM_ID="42910"; SHORTCUT_NAME="$TITLE"; }

# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ] || [ "$INSTALL_METHOD" == "STEAM_DEMO" ]; then
        # 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
        # Steam install
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
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"

        # Making shortcut
        POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Tuesday 28 January 2020 at 19:57
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,11 +1,19 @@
 #!/bin/bash
 # Date : (2011-07-16 21:00)
-# Last revision : (2014-08-26 12:28)
+# Last revision : see changelog
 # Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
 # Distribution used to test : Linux Mint 11 x64, Arch Linux
 # Author : GNU_Raziel, m1kc
 # Licence : Retail
 # Only For : http://www.playonlinux.com
+#
+# CHANGELOG
+# [GNU_Raziel] (2011-07-16 21:00)
+#   Initial script.
+# [m1kc] (2014-08-26 12:28)
+#   ?
+# [Dadu042] (2020-01-27 23:30)
+#   Wine 1.7.24 (outdated) -> 2.22
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -16,7 +24,7 @@
 EDITOR="Arrowhead Game Studios"
 GAME_URL="http://www.magickagame.com/"
 AUTHOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.7.24"
+WORKING_WINE_VERSION="2.22"
 GAME_VMS="256"
 
 # Starting the script
@@ -48,7 +56,7 @@
 POL_SetupWindow_VMS $GAME_VMS
 
 # The game refuses to run without GLSL, so we keep it.
-#POL_Wine_Direct3D "UseGLSL" "disabled"
+# POL_Wine_Direct3D "UseGLSL" "disabled"
 
 # Set Graphic Card information keys for wine
 POL_Wine_SetVideoDriver

New source code

#!/bin/bash
# Date : (2011-07-16 21:00)
# Last revision : see changelog
# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
# Distribution used to test : Linux Mint 11 x64, Arch Linux
# Author : GNU_Raziel, m1kc
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [GNU_Raziel] (2011-07-16 21:00)
#   Initial script.
# [m1kc] (2014-08-26 12:28)
#   ?
# [Dadu042] (2020-01-27 23:30)
#   Wine 1.7.24 (outdated) -> 2.22

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Magicka"
TITLE_DEMO="Magicka (Demo)"
PREFIX="magicka"
EDITOR="Arrowhead Game Studios"
GAME_URL="http://www.magickagame.com/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="2.22"
GAME_VMS="256"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/magicka/top.jpg" "http://files.playonlinux.com/resources/setups/magicka/left.jpg" "$TITLE"
POL_SetupWindow_Init

# 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 "x86" # For dotnet35
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between Steam and other Digital Download versions
POL_SetupWindow_InstallMethod "STEAM_DEMO,STEAM,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xna31
POL_Call POL_Install_dotnet35

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# The game refuses to run without GLSL, so we keep it.
# POL_Wine_Direct3D "UseGLSL" "disabled"

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Mandatory pre-install fix for steam
[ "$INSTALL_METHOD" == "STEAM_DEMO" ] && { STEAM_ID="73050"; SHORTCUT_NAME="$TITLE_DEMO"; }
[ "$INSTALL_METHOD" == "STEAM" ] && { STEAM_ID="42910"; SHORTCUT_NAME="$TITLE"; }

# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ] || [ "$INSTALL_METHOD" == "STEAM_DEMO" ]; then
        # 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
        # Steam install
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
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"

        # Making shortcut
        POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Replies

Xenos5 Monday 6 April 2015 at 9:59
Xenos5

Warning

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

Message

The audio-related crashing happened to me a lot more than in 5% of cases. Thankfully, it seemed to be fixed by 1.7.39-staging, probably because that implements PulseAudio support.
I am, however, having other issues further along in the process. About 5-15 seconds into the very first scene, where Vlad the not-vampire tells us about the situation at the college thing, it crashes. The errorReport says

Version: 1.4.16.0       Thread: LoaderThread

System.OutOfMemoryException: Insufficient memory to continue the execution of the program.
   at Microsoft.Xna.Framework.Helpers.GetExceptionFromResult(UInt32 result)
   at Microsoft.Xna.Framework.Graphics.DepthStencilBuffer..ctor(GraphicsDevice graphicsDevice, Int32 width, Int32 height, DepthFormat format, MultiSampleType multiSampleType, Int32 multiSampleQuality)
   at PolygonHead.Lights.DirectionalLight.CreateShadowMap()
   at PolygonHead.Lights.DirectionalLight.set_CastShadows(Boolean value)
   at Magicka.Levels.LevelModel..ctor(ContentReader iInput)
   at Magicka.ContentReaders.LevelModelReader.Read(ContentReader input, LevelModel existingInstance)
   at Microsoft.Xna.Framework.Content.ContentReader.InvokeReader[T](ContentTypeReader reader, Object existingInstance)
   at Microsoft.Xna.Framework.Content.ContentReader.ReadObjectInternal[T](Object existingInstance)
   at Microsoft.Xna.Framework.Content.ContentReader.ReadObject[T]()
   at Microsoft.Xna.Framework.Content.ContentReader.ReadAsset[T]()
   at Microsoft.Xna.Framework.Content.ContentManager.ReadAsset[T](String assetName, Action`1 recordDisposableObject)
   at Magicka.SharedContentManager.CommonContentManager.Load[T](String assetName)
   at Magicka.SharedContentManager.Load[T](String assetName)
   at Magicka.Levels.GameScene.LoadLevel()
   at Magicka.Levels.Level.ChangeScene()
   at Magicka.Levels.Level.GoToScene(SpawnPoint iSpawnPoint, Transitions iTransition, Single iTransitionTime, Boolean iSaveNPCs, Action iOnComplete, Action`1 reportProgressAction)
   at Magicka.GameLogic.GameStates.PlayState.Initialize()
   at Magicka.Game.LoaderFunction()
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()

0x02fc Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Helpers.GetExceptionFromResult
0x00f4 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Graphics.DepthStencilBuffer..ctor
0x0071 PolygonHead.dll->PolygonHead.Lights.DirectionalLight.CreateShadowMap
0x004b PolygonHead.dll->PolygonHead.Lights.DirectionalLight.set_CastShadows
0x01f9 Magicka.exe->Magicka.Levels.LevelModel..ctor
0x0006 Magicka.exe->Magicka.ContentReaders.LevelModelReader.Read
0x0023 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Content.ContentReader.InvokeReader
0x0040 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Content.ContentReader.ReadObjectInternal
0x0000 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Content.ContentReader.ReadObject
0x0007 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Content.ContentReader.ReadAsset
0x0039 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Content.ContentManager.ReadAsset
0x002b Magicka.exe->Magicka.SharedContentManager+CommonContentManager.Load
0x0008 Magicka.exe->Magicka.SharedContentManager.Load
0x0005 Magicka.exe->Magicka.Levels.GameScene.LoadLevel
0x00e3 Magicka.exe->Magicka.Levels.Level.ChangeScene
0x0101 Magicka.exe->Magicka.Levels.Level.GoToScene
0x0b06 Magicka.exe->Magicka.GameLogic.GameStates.PlayState.Initialize
0x003a Magicka.exe->Magicka.Game.LoaderFunction
0x0024 CommonLanguageRuntimeLibrary->System.Threading.ThreadHelper.ThreadStart_Context
0x005f CommonLanguageRuntimeLibrary->System.Threading.ExecutionContext.Run
0x0019 CommonLanguageRuntimeLibrary->System.Threading.ThreadHelper.ThreadStart

I'm not running out of either RAM or VRAM, and even if I was, I really shouldn't be, with 8 and 2 GB of the stuff respectively. Not to mention that it runs just fine on Windows.

Differences

@@ -16,7 +16,7 @@
 EDITOR="Arrowhead Game Studios"
 GAME_URL="http://www.magickagame.com/"
 AUTHOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.7.24"
+WORKING_WINE_VERSION="1.7.39-staging"
 GAME_VMS="256"
 
 # Starting the script

New source code

#!/bin/bash
# Date : (2011-07-16 21:00)
# Last revision : (2014-08-26 12:28)
# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
# Distribution used to test : Linux Mint 11 x64, Arch Linux
# Author : GNU_Raziel, m1kc
# Licence : Retail
# Only For : http://www.playonlinux.com

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Magicka"
TITLE_DEMO="Magicka (Demo)"
PREFIX="magicka"
EDITOR="Arrowhead Game Studios"
GAME_URL="http://www.magickagame.com/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.39-staging"
GAME_VMS="256"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/magicka/top.jpg" "http://files.playonlinux.com/resources/setups/magicka/left.jpg" "$TITLE"
POL_SetupWindow_Init

# 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 "x86" # For dotnet35
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between Steam and other Digital Download versions
POL_SetupWindow_InstallMethod "STEAM_DEMO,STEAM,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xna31
POL_Call POL_Install_dotnet35

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# The game refuses to run without GLSL, so we keep it.
#POL_Wine_Direct3D "UseGLSL" "disabled"

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Mandatory pre-install fix for steam
[ "$INSTALL_METHOD" == "STEAM_DEMO" ] && { STEAM_ID="73050"; SHORTCUT_NAME="$TITLE_DEMO"; }
[ "$INSTALL_METHOD" == "STEAM" ] && { STEAM_ID="42910"; SHORTCUT_NAME="$TITLE"; }

# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ] || [ "$INSTALL_METHOD" == "STEAM_DEMO" ]; then
        # 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
        # Steam install
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
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"

        # Making shortcut
        POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Replies

Monday 6 April 2015 at 12:47
On further investigation, my issue is caused by https://bugs.winehq.org/show_bug.cgi?id=29324
The workaround listed in that bug's discussion of reducing all your graphics settings seems to work, but is sad and disappointing. :(
m1kc Tuesday 26 August 2014 at 13:14
m1kc

Warning

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

Message

Slightly updated the script: this game crashed with Wine 1.5.20 on my machine, so I changed the version to 1.7.24; GLSL is not disabled anymore 'cause the game refused to run without it.

Now it works pretty well & stable. There's only one issue: about 5% launches fail and crash log says that the game failed to initialize audio; in such cases, reboot helps.

Differences

@@ -1,9 +1,9 @@
 #!/bin/bash
 # Date : (2011-07-16 21:00)
-# Last revision : (2013-05-18 21:00)
-# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20
-# Distribution used to test : Linux Mint 11 x64
-# Author : GNU_Raziel
+# Last revision : (2014-08-26 12:28)
+# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
+# Distribution used to test : Linux Mint 11 x64, Arch Linux
+# Author : GNU_Raziel, m1kc
 # Licence : Retail
 # Only For : http://www.playonlinux.com
 
@@ -16,7 +16,7 @@
 EDITOR="Arrowhead Game Studios"
 GAME_URL="http://www.magickagame.com/"
 AUTHOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.5.20"
+WORKING_WINE_VERSION="1.7.24"
 GAME_VMS="256"
 
 # Starting the script
@@ -26,7 +26,7 @@
 # Starting debugging API
 POL_Debug_Init
 
-POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
@@ -47,8 +47,8 @@
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
 
-## Fix for this game
-POL_Wine_Direct3D "UseGLSL" "disabled"
+# The game refuses to run without GLSL, so we keep it.
+#POL_Wine_Direct3D "UseGLSL" "disabled"
 
 # Set Graphic Card information keys for wine
 POL_Wine_SetVideoDriver
@@ -59,26 +59,26 @@
 
 # Begin game installation
 if [ "$INSTALL_METHOD" == "STEAM" ] || [ "$INSTALL_METHOD" == "STEAM_DEMO" ]; then
-	# 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
-	POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
-	# Steam install
-	POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
-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"
-	
-	# Making shortcut
-	POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
+        # 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
+        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
+        # Steam install
+        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
+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"
+
+        # Making shortcut
+        POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
 fi
 
 POL_SetupWindow_Close

New source code

#!/bin/bash
# Date : (2011-07-16 21:00)
# Last revision : (2014-08-26 12:28)
# Wine version used : 1.3.23, 1.3.26, 1.3.33, 1.3.37, 1.4, 1.5.20, 1.7.24
# Distribution used to test : Linux Mint 11 x64, Arch Linux
# Author : GNU_Raziel, m1kc
# Licence : Retail
# Only For : http://www.playonlinux.com

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Magicka"
TITLE_DEMO="Magicka (Demo)"
PREFIX="magicka"
EDITOR="Arrowhead Game Studios"
GAME_URL="http://www.magickagame.com/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.24"
GAME_VMS="256"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/magicka/top.jpg" "http://files.playonlinux.com/resources/setups/magicka/left.jpg" "$TITLE"
POL_SetupWindow_Init

# 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 "x86" # For dotnet35
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between Steam and other Digital Download versions
POL_SetupWindow_InstallMethod "STEAM_DEMO,STEAM,LOCAL"

# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_xna31
POL_Call POL_Install_dotnet35

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# The game refuses to run without GLSL, so we keep it.
#POL_Wine_Direct3D "UseGLSL" "disabled"

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Mandatory pre-install fix for steam
[ "$INSTALL_METHOD" == "STEAM_DEMO" ] && { STEAM_ID="73050"; SHORTCUT_NAME="$TITLE_DEMO"; }
[ "$INSTALL_METHOD" == "STEAM" ] && { STEAM_ID="42910"; SHORTCUT_NAME="$TITLE"; }

# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ] || [ "$INSTALL_METHOD" == "STEAM_DEMO" ]; then
        # 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" "$TITLE.png" "steam://rungameid/$STEAM_ID"
        POL_Shortcut "steam.exe" "Steam ($SHORTCUT_NAME)" "" ""
        # Steam install
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo 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"
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"

        # Making shortcut
        POL_Shortcut "Magicka.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Replies

Anonymous
Wednesday 27 August 2014 at 15:43
The game dont start...
Anonymous
Wednesday 27 August 2014 at 15:43
[08/27/14 15:41:38] - Running wine-1.7.24 Steam.exe steam://rungameid/42910 (Working directory : /home/chrysalis/.PlayOnLinux/wineprefix/magicka/drive_c/Program Files/Steam)
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e654 0x86e644
fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
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 defixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:imm:ImmGetOpenStatus (0x2081e8): semi-stub
fixme:ver:GetCurrentPackageId (0x32e368 (nil)): stub
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 deerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:imm:ImmDisableTextFrameService Stub
fixme:thread:GetThreadPreferredUILanguages 56, 0x33f77c, (nil) 0x33f780
fixme:winsock:WSALookupServiceBeginW (0x33f668 0x00000ff0 0x33f6a4) Stub!
[0827/154141:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b0, overlapped 0xb24f28): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x1009a, filter=0x33f7bc,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x1009a, filter=0x33f7bc,flags=0x00000000) returns a fake device notification handle!
[0827/154141:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f08c,0x00000000), stub!
fixme:ver:GetCurrentPackageId (0x270e004 (nil)): stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:ver:GetCurrentPackageId (0x30e5d0 (nil)): stub
fixme:hnetcfg:fw_apps_get__NewEnum 0x1506558, 0xc64e0e4
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x15065d8, L"C:\\Program Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x15065d8, L"Steam"
fixme:hnetcfg:fw_app_put_Enabled 0x15065d8, -1
fixme:hnetcfg:fw_apps_Add 0x1506558, 0x15065d8
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION
fixme:iphlpapi:NotifyAddrChange (Handle 0x9e105ac, overlapped 0x9e105b0): stub
fixme:win:RegisterDeviceNotificationA (hwnd=0x100a8, filter=0xd3fe4fc,flags=0x00000004) returns a fake device notification handle!
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c863430, 0x15d86b0, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c863430
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c863430, 0x1683de8, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c863430
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e650 0x86e640
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e650 0x86e640
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e694 0x86e684
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
err:ole:ifproxy_release_public_refs IRemUnknown_RemRelease failed with error 0x800706be
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e654 0x86e644
fixme:imm:ImmReleaseContext (0x100aa, 0x15fb200): stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:win:RegisterDeviceNotificationA (hwnd=0x100c6, filter=0x32e1f4,flags=0x00000004) returns a fake device notification handle!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d7a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d7a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d878,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x32d878,0x00000000), stub!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10122, filter=0xe3be93c,flags=0x00000000) returns a fake device notification handle!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:RegisterDeviceNotificationW (hwnd=0x20122, filter=0xe3be93c,flags=0x00000000) returns a fake device notification handle!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x10056360, 0x100d7648, 0x100d7640
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x10056360, 0x100d7680, 0x100d7678
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x10056360, 0x100d7610, 0x100d7608
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x10056360, 0x100d76b8, 0x100d76b0
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x10056360, 0x100d76f0, 0x100d76e8
fixme:imm:ImmGetOpenStatus (0x12f898): semi-stub
fixme:ver:GetCurrentPackageId (0x33f17c (nil)): stub
fixme:thread:SetThreadStackGuarantee (0x33fc80): stub
fixme:shell:URL_ParseUrl failed to parse L"System.Windows.Forms"
fixme:shell:URL_ParseUrl failed to parse L"SteamWrapper"
fixme:shell:URL_ParseUrl failed to parse L"msvcm90"
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.Xna.Framework.Game"
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.Xna.Framework"
fixme:shell:URL_ParseUrl failed to parse L"PolygonHead"
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"System.Xml"
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
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 deerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:shell:URL_ParseUrl failed to parse L"System.Core"
fixme:shell:URL_ParseUrl failed to parse L"System.Drawing"
fixme:shell:URL_ParseUrl failed to parse L"Accessibility"
fixme:win:EnumDisplayDevicesW ((null),0,0x33d378,0x00000000), stub!
...skipped 4 line(s)...
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!...skipped 5 line(s)...
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x8407190, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:process:FlushProcessWriteBuffers : stub
fixme:shell:URL_ParseUrl failed to parse L"mscorlib.resources"
fixme:msvcrt:__clean_type_info_names_internal (0x60345094) stub
fixme:shell:URL_ParseUrl failed to parse L"mscorlib.resources"
fixme:shell:URL_ParseUrl failed to parse L"PolygonHead"
fixme:gdiplus:GdipCreateHalftonePalette stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:shell:URL_ParseUrl failed to parse L"XNAnimation"
fixme:shell:URL_ParseUrl failed to parse L"System.Configuration"
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:ras:RasEnumConnectionsW (0x842ef88,0xaaddf4c,0xaaddf50),stub!
fixme:ras:RasEnumConnectionsW RAS support is not implemented! Configure program to use LAN connection/winsock instead!
fixme:shell:URL_ParseUrl failed to parse L"System.resources"
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:shell:URL_ParseUrl failed to parse L"System.resources"
fixme:ntdll:server_ioctl_file Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:server_ioctl_sock Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (_WSAIO(IOC_WS2, 23))
fixme:ras:RasConnectionNotificationW (0xffffffff,0x414,0x00000003),stub!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:ntdll:server_ioctl_file Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:server_ioctl_sock Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (_WSAIO(IOC_WS2, 23))
fixme:shell:URL_ParseUrl failed to parse L"JigLibX"
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12035da0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11faf518, (null), (null), 0x12035db8): stub
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 deerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12035da0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11faf518, (null), (null), 0x12035db8): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0827/154205:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x205ea08 (nil)): stub
[0827/154207:WARNING:content_browser_client.cc(499)] No browser info matching frame process id 3 and routing id 1
err:ole:RevokeDragDrop invalid hwnd 0x201ae
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:system:SystemParametersInfoW Unknown action: 116
Thursday 28 August 2014 at 7:52
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 deerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
Thursday 28 August 2014 at 7:53
Looks like you have problems with two mentioned libraries.
Thursday 28 August 2014 at 8:11
I would say that Winbind would be the one that you need. That is that SECUR32 error. It needs winbind, which can be found in the samba package. As for the p11-kit errors; I used to get those a lot on Kubuntu 12.04, but it never caused an issue. The first place that I would look would be at getting winbind installed into your system.
Anonymous
Thursday 28 August 2014 at 10:23
I install "p11-kit-modules" i386 i had 64bit version, and with i386 there isn't error message !
Anonymous
Thursday 28 August 2014 at 10:24
but game don't launch... idon't know "ntlm_auth" ?
Anonymous
Thursday 28 August 2014 at 10:28
[08/28/14 10:26:17] - Running wine-1.7.24 Steam.exe steam://rungameid/42910 (Working directory : /home/chrysalis/.PlayOnLinux/wineprefix/magicka/drive_c/Program Files/Steam)
fixme:process:SetProcessShutdownParameters (00000380, 00000000): partial stub.
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e654 0x86e644
fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e650 0x86e640
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:process:SetProcessShutdownParameters (00000100, 00000000): partial stub.
fixme:imm:ImmGetOpenStatus (0x207f68): semi-stub
fixme:ver:GetCurrentPackageId (0x32e368 (nil)): stub
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e650 0x86e640
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e694 0x86e684
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:imm:ImmDisableTextFrameService Stub
fixme:thread:GetThreadPreferredUILanguages 56, 0x33f77c, (nil) 0x33f780
fixme:winsock:WSALookupServiceBeginW (0x33f668 0x00000ff0 0x33f6a4) Stub!
[0828/102626:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
fixme:iphlpapi:NotifyAddrChange (Handle 0x33f7b0, overlapped 0xb24f28): stub
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a4, filter=0x33f7bc,flags=0x00000000) returns a fake device notification handle!
fixme:win:RegisterDeviceNotificationW (hwnd=0x100a4, filter=0x33f7bc,flags=0x00000000) returns a fake device notification handle!
[0828/102626:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f08c,0x00000000), stub!
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ver:GetCurrentPackageId (0x270e004 (nil)): stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:ver:GetCurrentPackageId (0x30e5d0 (nil)): stub
fixme:hnetcfg:fw_apps_get__NewEnum 0x1503ab8, 0xc64e0e4
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x14a6e70, L"C:\\Program Files\\Steam\\steam.exe"
fixme:hnetcfg:fw_app_put_Name 0x14a6e70, L"Steam"
fixme:hnetcfg:fw_app_put_Enabled 0x14a6e70, -1
fixme:hnetcfg:fw_apps_Add 0x1503ab8, 0x14a6e70
err:ole:CoGetClassObject class {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} not registered
err:ole:CoGetClassObject no class object {e2b3c97f-6ae1-41ac-817a-f6f92166d7dd} could be created for context 0x1
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_HANDLE_INFORMATION
fixme:iphlpapi:NotifyAddrChange (Handle 0x9e105ac, overlapped 0x9e105b0): stub
fixme:win:RegisterDeviceNotificationA (hwnd=0x300a8, filter=0xd3fe4fc,flags=0x00000004) returns a fake device notification handle!
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
err:ole:CoGetClassObject class {77f10cf0-3db5-4966-b520-b7c54fd35ed6} not registered
err:ole:CoGetClassObject no class object {77f10cf0-3db5-4966-b520-b7c54fd35ed6} could be created for context 0x1
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
err:ole:CoReleaseMarshalData IMarshal::ReleaseMarshalData failed with error 0x8001011d
fixme:msvcrt:__clean_type_info_names_internal (0x7a3c5ca4) stub
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e654 0x86e644
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c729430, 0x15ddc18, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c729430
fixme:wbemprox:wbem_locator_ConnectServer unsupported flags
fixme:wbemprox:client_security_SetBlanket 0x7c729430, 0x15ddc18, 10, 0, (null), 3, 3, (nil), 0x00000000
fixme:wbemprox:client_security_Release 0x7c729430
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:mountmgr:harddisk_ioctl The DISK_PARTITION_INFO and DISK_DETECTION_INFO structures will not be filled
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:imm:ImmReleaseContext (0x100b4, 0x163e390): stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:win:RegisterDeviceNotificationA (hwnd=0x100c6, filter=0x32e1f4,flags=0x00000004) returns a fake device notification handle!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d7a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d7a8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32d878,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x32d878,0x00000000), stub!
fixme:win:RegisterDeviceNotificationW (hwnd=0x10122, filter=0xe4be93c,flags=0x00000000) returns a fake device notification handle!
fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
fixme:win:RegisterDeviceNotificationW (hwnd=0x20122, filter=0xe4be93c,flags=0x00000000) returns a fake device notification handle!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x10056360, 0x100d7648, 0x100d7640
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x10056360, 0x100d7680, 0x100d7678
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x10056360, 0x100d7610, 0x100d7608
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x10056360, 0x100d76b8, 0x100d76b0
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x10056360, 0x100d76f0, 0x100d76e8
fixme:imm:ImmGetOpenStatus (0x12f898): semi-stub
fixme:ver:GetCurrentPackageId (0x33f17c (nil)): stub
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:thread:SetThreadStackGuarantee (0x33fc80): stub
fixme:shell:URL_ParseUrl failed to parse L"System.Windows.Forms"
fixme:shell:URL_ParseUrl failed to parse L"SteamWrapper"
fixme:shell:URL_ParseUrl failed to parse L"msvcm90"
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.Xna.Framework.Game"
fixme:shell:URL_ParseUrl failed to parse L"Microsoft.Xna.Framework"
fixme:shell:URL_ParseUrl failed to parse L"PolygonHead"
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"System.Xml"
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:shell:URL_ParseUrl failed to parse L"System.Core"
fixme:shell:URL_ParseUrl failed to parse L"System.Drawing"
fixme:shell:URL_ParseUrl failed to parse L"Accessibility"
fixme:win:EnumDisplayDevicesW ((null),0,0x33d378,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
...skipped 3 line(s)...
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!...skipped 5 line(s)...
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G6R5_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8X8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B10G10R10A2_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stfixme:d3d:wined3d_check_device_format_conversion wined3d 0x840a8b8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!fixme:process:FlushProcessWriteBuffers : stub
fixme:shell:URL_ParseUrl failed to parse L"mscorlib.resources"
fixme:msvcrt:__clean_type_info_names_internal (0x60345094) stub
fixme:shell:URL_ParseUrl failed to parse L"mscorlib.resources"
fixme:shell:URL_ParseUrl failed to parse L"PolygonHead"
fixme:gdiplus:GdipCreateHalftonePalette stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:shell:URL_ParseUrl failed to parse L"XNAnimation"
fixme:shell:URL_ParseUrl failed to parse L"System.Configuration"
fixme:ras:RasEnumConnectionsW (0x8434328,0x8eedfcc,0x8eedfd0),stub!
fixme:ras:RasEnumConnectionsW RAS support is not implemented! Configure program to use LAN connection/winsock instead!
fixme:shell:URL_ParseUrl failed to parse L"System.resources"
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:shell:URL_ParseUrl failed to parse L"System.resources"
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:ntdll:server_ioctl_file Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:server_ioctl_sock Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (_WSAIO(IOC_WS2, 23))
fixme:ras:RasConnectionNotificationW (0xffffffff,0x368,0x00000003),stub!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:ntdll:server_ioctl_file Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:server_ioctl_sock Unsupported ioctl 28000017 (device=2800 access=0 func=5 method=3)
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (_WSAIO(IOC_WS2, 23))
fixme:shell:URL_ParseUrl failed to parse L"JigLibX"
fixme:xinput:XInputGetState (0 0xf9bda10)
err:d3d_surface:surface_load_location Don't know how to handle location 0x100.
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12035da0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11faf518, (null), (null), 0x12035db8): stub
fixme:advapi:EventRegister {47a9201e-73b0-42ce-9821-7e134361bc6f}, 0x3f006c60, 0x3f03fce8, 0x3f03fce0
fixme:advapi:EventRegister {58a9201e-73b0-42ce-9821-7e134361bc70}, 0x3f006c60, 0x3f03fd20, 0x3f03fd18
fixme:advapi:EventRegister {3fa9201e-73b0-43fe-9821-7e145359bc6f}, 0x3f006c60, 0x3f03fcb0, 0x3f03fca8
fixme:advapi:EventRegister {1432afee-73b0-42ce-9821-7e134361b433}, 0x3f006c60, 0x3f03fd58, 0x3f03fd50
fixme:advapi:EventRegister {4372afee-73b0-42ce-9821-7e134361b519}, 0x3f006c60, 0x3f03fd90, 0x3f03fd88
fixme:process:SetProcessDEPPolicy (3): stub
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:RegisterTraceGuidsW (0x100a3de0, 0x12035da0, {3dada31d-19ef-4dc1-b345-037927193422}, 1, 0x11faf518, (null), (null), 0x12035db8): stub
fixme:gdi:GdiInitializeLanguagePack stub
[0828/102709:ERROR:renderer_main.cc(227)] Running without renderer sandbox
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:ver:GetCurrentPackageId (0x1f5ea08 (nil)): stub
[0828/102710:WARNING:content_browser_client.cc(499)] No browser info matching frame process id 3 and routing id 1
err:ole:RevokeDragDrop invalid hwnd 0x201ac
fixme:system:SystemParametersInfoW Unknown action: 116
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:advapi:EventUnregister deadbeef: stub
fixme:wtsapi:WTSQuerySessionInformationW Stub (nil) 0xffffffff 4 0x86e650 0x86e640
Anonymous
Thursday 28 August 2014 at 10:28
i install winbind and now i have this message error
Friday 29 August 2014 at 15:25
A file named like errorReport_2014.08.26-12.45.46_(1).txt should have appeared in Magicka folder. Could you show it to me? (If there are many of them, show the latest.) inb4, if its first line says "Thread: Init Audio", just reboot.
Anonymous
Friday 29 August 2014 at 16:30
Version: 1.4.16.0 Thread: Init Audio


System.InvalidOperationException: Operation is not valid due to the current state of the object.
at Microsoft.Xna.Framework.Audio.UnsafeNativeMethods.AllocateArrayAndReadFile(String filename, Void** ppData, UInt32* pdwBufferSize)
at Microsoft.Xna.Framework.Audio.UnsafeNativeMethods.WaveBank.CreateHandle(UInt32 hEngine, String string, Int32 length, IntPtr& pCleanup)
at Microsoft.Xna.Framework.Audio.WaveBank..ctor(AudioEngine audioEngine, String nonStreamingWaveBankFilename)
at Magicka.Audio.AudioManager.Init()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()


0x0000 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Audio.UnsafeNativeMethods.AllocateArrayAndReadFile
0x0047 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Audio.UnsafeNativeMethods+WaveBank.CreateHandle
0x0045 Microsoft.Xna.Framework.dll->Microsoft.Xna.Framework.Audio.WaveBank..ctor
0x0115 Magicka.exe->Magicka.Audio.AudioManager.Init
0x0024 CommonLanguageRuntimeLibrary->System.Threading.ThreadHelper.ThreadStart_Context
0x005f CommonLanguageRuntimeLibrary->System.Threading.ExecutionContext.Run
0x0019 CommonLanguageRuntimeLibrary->System.Threading.ThreadHelper.ThreadStart
Anonymous
Friday 29 August 2014 at 16:31
reboot, the system linux, pol or just the game ?
Anonymous
Friday 29 August 2014 at 16:39
when i reload the game it's crash again... in debug the last message is: err:d3d_surface:surface_load_location Don't know how to handle location 0x100.
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
Friday 29 August 2014 at 17:17
Reboot Linux.
Anonymous
Friday 29 August 2014 at 17:22
when i reboot it crash again...
Friday 29 August 2014 at 17:49
Well, your logs now look just like mine, so I guess the game should work on your machine as well. Do some woodoo: reboot again, reboot Wine, launch it a couple more times - I think eventually it should run.
Anonymous
Saturday 30 August 2014 at 12:09
I tried but...no launch. Isee in WineHQ forum that: set your graphic card memory amount, disable GLSL and multisampling I do that and the game launch good;;;but in game the map and characters are all black, just see bar life... ??? and now the game don't start again
Saturday 30 August 2014 at 12:32
Hard to say. What video card do you have? Are drivers properly installed? Do other games work - in Linux, under Wine? (And I'm surprised to hear that it works when GLSL is turned off.)
Anonymous
Sunday 31 August 2014 at 12:47
i am on Linuxmint 17 64bit, with 340.32 Nvidia driver , my gpu is Nvidia Quadro FX 770M, in Pol i have League of legends, Papo and yo, Orcs must die..., and in Linux Dota 2, Strife, brutal legend ...
Monday 1 September 2014 at 9:42
Then it's kinda strange. Sorry, I don't know what to advice.
Anonymous
Thursday 4 September 2014 at 1:23
Sorry to sound like a total newb here, but new to linux, we all have to learn somewhere. is this the actual game where you can play it free, or is it just a way to play it after you have purchased it?
Anonymous
Tuesday 9 September 2014 at 22:30
[09/10/14 00:21:38] - Running wine-1.7.26 Steam.exe steam://rungameid/42910 (Working directory : /home/scar/.PlayOnLinux/wineprefix/magicka/drive_c/Program Files/Steam)
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: ?????????? ??????? ???????????wine: configuration in '/home/scar/.PlayOnLinux//wineprefix/magicka' has been updated.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: ?????????? ??????? ???????????p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: ?????????? ??????? ???????????[0910/002151:ERROR:network_change_notifier_win.cc(174)] WSALookupServiceBegin failed with: 8
[0910/002151:ERROR:gpu_info_collector_win.cc(103)] Can't retrieve a valid WinSAT assessment.
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: ?????????? ??????? ???????????[09/10/14 00:22:34] - Running wine-1.7.26 Steam.exe steam://rungameid/42910 (Working directory : /home/scar/.PlayOnLinux/wineprefix/magicka/drive_c/Program Files/Steam)
fixme:ver:GetCurrentPackageId (0x32e490 (nil)): stub
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: ?????????? ??????? ???????????
Anonymous
Tuesday 9 September 2014 at 22:31
Crash after running
Saturday 20 September 2014 at 15:24
@mmmujeeeg, there's a solution above.