Path of Exile

Informations

Creator Message
xyz Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 118494
Wine: 2.22

Feedbacks

Description

Free online-only action role-playing game, set in the dark fantasy world of Wraeclast.

Wikipedia. Appdb.winehq.org (tests reports). 'Path of Exile on Wine'.

Screenshots

MiniatureMiniature

Source code

#!/usr/bin/env playonlinux-bash
# Date : 2012-08-16 21-12
# Last revision : see changelog
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz
#
# CHANGELOG
# [Dadu042] (2019-05-26)
#   Fix text missing in the installer first screen (and in the buttons). POL 4.3.4, Xubuntu 19.04
#   With Wine 3.0+ the installer crash (because of missing JPEGdecoder ?).
# [contessaxd] (2018-03-07  21-55)
#   Updated download location
# [deanmsands3] (2018-03-12 19-49)
#   Installer is now EXE, removed msiexec from POL_Wine command.
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Path of Exile"
PREFIX="pathofexile"
  
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "2.22"

POL_System_TmpCreate "$PREFIX"
  
cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
  
POL_System_TmpDelete
  
POL_Wine_OverrideDLL "native,builtin" "openal32"
  
POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
   
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
poenotworking Thursday 1 April 2021 at 22:40
poenotworking Anonymous

Warning

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

Message

Outdated installer url

Differences

@@ -1,3 +1,4 @@
+
 #!/usr/bin/env playonlinux-bash
 # Date : 2012-08-16 21-12
 # Last revision : see changelog
@@ -6,6 +7,7 @@
 # Author : xyz
 #
 # CHANGELOG
+# [poenotworking] new download url
 # [Dadu042] (2019-05-26)
 #   Fix text missing in the installer first screen (and in the buttons). POL 4.3.4, Xubuntu 19.04
 #   With Wine 3.0+ the installer crash (because of missing JPEGdecoder ?).
@@ -13,13 +15,13 @@
 #   Updated download location
 # [deanmsands3] (2018-03-12 19-49)
 #   Installer is now EXE, removed msiexec from POL_Wine command.
-  
+   
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-  
+   
 TITLE="Path of Exile"
 PREFIX="pathofexile"
-  
+   
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 POL_SetupWindow_SetID 1366
@@ -27,19 +29,19 @@
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "2.22"
-
+ 
 POL_System_TmpCreate "$PREFIX"
-  
+   
 cd "$POL_System_TmpDir"
-POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
+POL_Download "https://web.poecdn.com/downloads/PathOfExileInstaller.exe"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
-  
+   
 POL_System_TmpDelete
-  
+   
 POL_Wine_OverrideDLL "native,builtin" "openal32"
-  
-POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
    
+POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
+    
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : 2012-08-16 21-12
# Last revision : see changelog
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz
#
# CHANGELOG
# [poenotworking] new download url
# [Dadu042] (2019-05-26)
#   Fix text missing in the installer first screen (and in the buttons). POL 4.3.4, Xubuntu 19.04
#   With Wine 3.0+ the installer crash (because of missing JPEGdecoder ?).
# [contessaxd] (2018-03-07  21-55)
#   Updated download location
# [deanmsands3] (2018-03-12 19-49)
#   Installer is now EXE, removed msiexec from POL_Wine command.
   
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Path of Exile"
PREFIX="pathofexile"
   
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "2.22"
 
POL_System_TmpCreate "$PREFIX"
   
cd "$POL_System_TmpDir"
POL_Download "https://web.poecdn.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
   
POL_System_TmpDelete
   
POL_Wine_OverrideDLL "native,builtin" "openal32"
   
POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
    
POL_SetupWindow_Close
exit

Replies

Edited by poenotworking

Dadu042 Thursday 23 May 2019 at 21:06
Dadu042

Information

This update has been approved by the team.

Message

I stopped after the installer displayed the details of "patch notes 3.6.5" and started to download the game (15 GB).

Differences

@@ -1,44 +1,45 @@
 #!/usr/bin/env playonlinux-bash
 # Date : 2012-08-16 21-12
-# Last revision : 2018-03-12 19-49
+# Last revision : see changelog
 # Wine version used : 1.4
 # Distribution used to test : Gentoo x86_64
 # Author : xyz
 #
 # CHANGELOG
-# [Dadu042] (2019-05-23)
+# [Dadu042] (2019-05-26)
 #   Fix text missing in the installer first screen (and in the buttons). POL 4.3.4, Xubuntu 19.04
+#   With Wine 3.0+ the installer crash (because of missing JPEGdecoder ?).
 # [contessaxd] (2018-03-07  21-55)
 #   Updated download location
 # [deanmsands3] (2018-03-12 19-49)
 #   Installer is now EXE, removed msiexec from POL_Wine command.
- 
+  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 TITLE="Path of Exile"
 PREFIX="pathofexile"
- 
+  
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 POL_SetupWindow_SetID 1366
 POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
-POL_Wine_PrefixCreate "3.0"
- 
+POL_Wine_PrefixCreate "2.22"
+
 POL_System_TmpCreate "$PREFIX"
- 
+  
 cd "$POL_System_TmpDir"
 POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe" 
- 
+POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
+  
 POL_System_TmpDelete
- 
+  
 POL_Wine_OverrideDLL "native,builtin" "openal32"
- 
-POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
   
+POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
+   
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : 2012-08-16 21-12
# Last revision : see changelog
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz
#
# CHANGELOG
# [Dadu042] (2019-05-26)
#   Fix text missing in the installer first screen (and in the buttons). POL 4.3.4, Xubuntu 19.04
#   With Wine 3.0+ the installer crash (because of missing JPEGdecoder ?).
# [contessaxd] (2018-03-07  21-55)
#   Updated download location
# [deanmsands3] (2018-03-12 19-49)
#   Installer is now EXE, removed msiexec from POL_Wine command.
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Path of Exile"
PREFIX="pathofexile"
  
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "2.22"

POL_System_TmpCreate "$PREFIX"
  
cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
  
POL_System_TmpDelete
  
POL_Wine_OverrideDLL "native,builtin" "openal32"
  
POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png" "Game;Roleplaying"
   
POL_SetupWindow_Close
exit

Replies

Anonymous
Sunday 25 August 2019 at 2:31
Still doesn't work

Edited by Dadu042

deanmsands3 Monday 12 March 2018 at 20:56
deanmsands3 Anonymous

Warning

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

Differences

@@ -1,6 +1,14 @@
-#!/bin/bash
+#!/usr/bin/env playonlinux-bash
+
+
+# CHANGELOG
+# [contessaxd] (2018-03-07  21-55)
+#   Updated download location
+# [deanmsands3] (2018-03-12 19-49)
+#   Installer is now EXE, removed msiexec from POL_Wine command.
+
 # Date : 2012-08-16 21-12
-# Last revision : 2012-09-25 22-23
+# Last revision : 2018-03-12 19-49
 # Wine version used : 1.4
 # Distribution used to test : Gentoo x86_64
 # Author : xyz
@@ -21,9 +29,9 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
+POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
 
 POL_System_TmpDelete
 

New source code

#!/usr/bin/env playonlinux-bash


# CHANGELOG
# [contessaxd] (2018-03-07  21-55)
#   Updated download location
# [deanmsands3] (2018-03-12 19-49)
#   Installer is now EXE, removed msiexec from POL_Wine command.

# Date : 2012-08-16 21-12
# Last revision : 2018-03-12 19-49
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

Anonymous
Monday 12 March 2018 at 21:21
Warning: Installs and runs, but with graphical glitches. I'll try updating to a newer Wine.
contessaxd Wednesday 7 March 2018 at 21:55
contessaxd Anonymous

Warning

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

Differences

@@ -21,9 +21,9 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
+POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.exe"
 
 POL_System_TmpDelete
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.exe"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

Anonymous
Monday 12 March 2018 at 20:58
It's now an EXE, not an MSI. Need to remove the "msiexec /i" from the POL_Wine statement. Otherwise, correct.
yazeed Friday 2 February 2018 at 6:58
yazeed Anonymous

Warning

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

Differences

@@ -16,7 +16,7 @@
 POL_SetupWindow_SetID 1366
 POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate "1.7.55"
+POL_Wine_PrefixCreate "1.7.27-PathOfExile-1.7.27"
 
 POL_System_TmpCreate "$PREFIX"
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.27-PathOfExile-1.7.27"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

Friday 2 February 2018 at 15:24
These wine version exist ? (1.7.27-PathOfExile-1.7.27)
Anonymous
Monday 5 February 2018 at 5:04
It exists, but doesn't work, I was testing it.
yazeed Friday 2 February 2018 at 6:53
yazeed Anonymous

Warning

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

Differences

@@ -21,7 +21,7 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "http://www.pathofexile.com/downloads/PathOfExileInstaller.msi"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "http://www.pathofexile.com/downloads/PathOfExileInstaller.msi"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

Anonymous
Friday 2 February 2018 at 6:54
Fixed broken webcdn URL.
Emalkartha Wednesday 10 May 2017 at 7:45
Emalkartha Anonymous

Message

Have to give this a big thumbs down for Mac players.  Wine crashes on the game installing every time, no matter what i try.

Replies

Anonymous
Sunday 8 October 2017 at 6:52
lol. Poorly formatted comment is poorly formatted. Maybe you should have concentrated on that rather than trying to be snarky.
Anonymous
Sunday 8 October 2017 at 11:20
WOuld you mind trying to launch the game with latest wine stgaing (2.18) ?

the installer is obviously using a very old version of wine (1.7.55)
Anonymous
Tuesday 31 October 2017 at 17:10
Still get the same error. "Error in POL_Wine
Aeronic Wednesday 26 April 2017 at 22:35
Aeronic Anonymous

Warning

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

Differences

@@ -21,9 +21,9 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.exe"
 POL_Wine_WaitBefore "$TITLE"
-POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
+POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"
 
 POL_System_TmpDelete
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.exe"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/PathOfExileInstaller.exe"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

Anonymous
Wednesday 26 April 2017 at 22:36
GGG has changed the installer from msi to exe so I made a simple change to fix that.
Anonymous
Monday 8 May 2017 at 18:08
Wine keeps crashing when I try to install Path of Exile. Any suggestions?
Anonymous
Tuesday 6 June 2017 at 10:49
yep, its not working
hochl Saturday 25 March 2017 at 14:24
hochl Anonymous

Message

I have been running POE with playonlinux on Debian for a while. Here are two insights:

  1.  check the thread on the official forums for valuable information: https://www.pathofexile.com/forum/view-thread/8980
  2. Add `-gc 100' to program start parameters, for me this fixes a lot of issues.
  3. But an nVidia card, the game would not run well with my older ATI card (it did run with that card on Windows without any issues).

Replies

prarus7 Thursday 19 January 2017 at 7:43
prarus7 Anonymous

Message

My POE seems to start, however when the loading screen is done, the game seems to be frozen on this screen: 

Anyone know any fixes?

Replies

Anonymous
Thursday 19 January 2017 at 7:44
Nothing is moving, only I can move my mouse, but no response from the game.
Anonymous
Tuesday 16 January 2018 at 16:09
do you use gallium-nine enabled wine by chance?
bspmen Monday 28 November 2016 at 12:23
bspmen Anonymous

Message

As of last update (around 20 November 2016) Path of Exile stopped working properly. The 3D graphics flicker constantly. Anyone else getting this?

Replies

Anonymous
Sunday 4 December 2016 at 19:43
Yup, you need to deactivate Engine Multithreading in the options. that gets rid of it.
Anonymous
Thursday 19 January 2017 at 7:14
Hey I can launch the game fine but when the game starts I get a black screen with hp bar, and HUD showing, does anyone know a fix? Been trying to play POE on mac forever.
sherkhan Saturday 27 August 2016 at 18:22
sherkhan Anonymous

Message

Any chance someone could write an update for 1.9x [CMST enabled]?

Contacted GGG, but they refuse to touch OSX/Linux wrappers even at a distance and pointed me towards a forum post from 2013. It'd be great if we could get a working wrapper up here.

Thanks!

Replies

kartoffelopa Tuesday 1 March 2016 at 22:21
kartoffelopa Anonymous

Message

Hello,

With the new Ascedency prepatch, the game does not work anymore with the current setup.

 

It will work with the following dlls:

https://www.winehq.org/pipermail/wine-bugs/2015-November/428425.html

Winversion: XP

Wine: 1.9.4

also vcrun2010 must be installed afterwards.

 

 

 

 

Replies

Anonymous
Tuesday 1 March 2016 at 22:23
as i dont know how to include the dlls into the startscript, i only point them out with this comment
petch Friday 4 December 2015 at 23:02
petch

Warning

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

Message

Add POL_SetupWindow_SetID

Differences

@@ -13,6 +13,7 @@
 
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
+POL_SetupWindow_SetID 1366
 POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "1.7.55"

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 1366
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

RobLoach Sunday 22 November 2015 at 6:21
RobLoach

Warning

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

Message

Functions well on 1.7.55.

Differences

@@ -15,7 +15,7 @@
 POL_SetupWindow_Init
 POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate "1.5.28-PathOfExile"
+POL_Wine_PrefixCreate "1.7.55"
 
 POL_System_TmpCreate "$PREFIX"
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.7.55"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

hsusonic Tuesday 6 October 2015 at 13:08
hsusonic Anonymous

Message

Hi, 

The system I am using is Ubuntu 14.04. 

I installed Path of Exile through POL, but it crash at startup.

The folloing is the debug information:

Running wine-1.5.28-PathOfExile PathOfExile.exe (Working directory : /home/hsusonic/.PlayOnLinux/wineprefix/pathofexile/drive_c/Program Files/Grinding Gear Games/Path of Exile)
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation 0x110000 0 0x33fdb8 4
fixme:win:EnumDisplayDevicesW ((null),0,0x33e544,0x00000000), stub!
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d:swapchain_init The application requested more than one back buffer, this is not properly supported.
Please configure the application to use double buffering (1 back buffer) if possible.
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d9:Direct3DShaderValidatorCreate9 stub
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:system:SystemParametersInfoW Unimplemented action: 59 (SPI_SETSTICKYKEYS)
fixme:system:SystemParametersInfoW Unimplemented action: 53 (SPI_SETTOGGLEKEYS)
fixme:system:SystemParametersInfoW Unimplemented action: 51 (SPI_SETFILTERKEYS)
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
fixme:d3d_texture:texture_init Failed to create surface 0x1603f0, hr 0x8876086c

Is there anything I can do to make it right?

Best,

Sonic

Replies

Monday 23 November 2015 at 19:30
Got the same crash. Updating to 1.7.55 32bit without the patch fixed it.
zaggynl Sunday 23 August 2015 at 20:15
zaggynl Anonymous

Message

Runs out of the box without any errors or crashes but performance isn't very good.
~25 FPS on i5, , gtx760, 8gb ram, ssd

Haven't had any luck getting PoE to work on later wine versions (black screen) has anyone else?

Replies

Anonymous
Monday 31 August 2015 at 17:48
Update: found 1.7.27-PathOfExile-1.7.27 wine version in PlayOnLinux, am now running at 60FPS!
idcat71210 Monday 10 August 2015 at 6:53
idcat71210 Anonymous

Message

hi,i am a new player by MAC. I alway instal POE on windows. This is my first time instal on MAC.

But I do not how to start. Have some bady can teach me or show the step by photo. 

 

I will very very Appreciate?

 

Thank you 

 

Jerry

Replies

JureGr Wednesday 8 July 2015 at 19:23
JureGr Anonymous

Message

Game crashes on startup.

 


Running wine-1.5.28-PathOfExile PathOfExile.exe (Working directory : /home/ghandi/.PlayOnLinux/wineprefix/pathofexile/drive_c/Program Files/Grinding Gear Games/Path of Exile)
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation 0x110000 0 0x32fdb8 4
ALSA lib dlmisc.c:254:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
ALSA lib dlmisc.c:254:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
libGL error: unable to load driver: r600_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: r600
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  155 (GLX)
  Minor opcode of failed request:  3 (X_GLXCreateContext)
  Value in failed request:  0x0
  Serial number of failed request:  619
  Current serial number in output stream:  623


Antergos linux 64bit

I've seen this problem before (failed to load driver) but i have no idea what it means or how to fix it. can anyone help?

Replies

Wednesday 8 July 2015 at 19:32
You need the 32-bit version of libasound
Wednesday 8 July 2015 at 19:33
Also, it looks like you need the 32-bit graphics drivers for you graphics card installed. Check your distro's documentation to find out how to get those libs installed, and that should fix it. At least from what I can see.
Anonymous
Wednesday 8 July 2015 at 19:50
Well there's definitely less problems, but there is still that ALSA error...

Running wine-1.5.28-PathOfExile PathOfExile.exe (Working directory : /home/ghandi/.PlayOnLinux/wineprefix/pathofexile/drive_c/Program Files/Grinding Gear Games/Path of Exile)
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:heap:HeapSetInformation 0x110000 0 0x32fdb8 4
ALSA lib dlmisc.c:254:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
fixme:dbghelp:elf_search_auxv can't find symbol in module
Inconsistency detected by ld.so: dl-close.c: 764: _dl_close: Assertion `map->l_init_called' failed!

Wednesday 8 July 2015 at 19:56
It still cannot find libasound in 32-bit form, but it specifically, it looks like you need the 64 and 32-bit versions of pulseaudio-also, too.
Wednesday 8 July 2015 at 19:57
Check /usr/lib32/alsa-lib/ and see if libasound_module_pcm_pulse.so exists. If not, then you likely need pulseaudio-alsa (or whatever the equivalent for your distro is).
Anonymous
Wednesday 8 July 2015 at 20:08
libasound_moduke_pcm_pulse.so exist, but i cannot find the specifically 32 / 64 bit versions of pulseaudio-alsa package.
Wednesday 8 July 2015 at 20:20
Idunno, then. You will need to refer to your distro's forums or docs to get that installed. Basically, Wine wants to talk to 32-bit Linux libraries, and it is not working. I have never used that distro, so I am not sure why it is doing that.
Anonymous
Wednesday 8 July 2015 at 20:33
It is basically arch-linux. I'll check around a bit more, thanks for all the help!
Wednesday 8 July 2015 at 21:16
No problem. You should be able to find that package. If anything, check the Arch wiki for info (IMHO, some of the most concise and up-to-date Linux usage docs out there.).
autra Thursday 21 May 2015 at 12:15
autra Anonymous

Message

On Ubuntu 15.04, the first run (just after the installation, before the "allocated space" phase), fails with

[05/21/15 12:11:31] - Running wine-1.5.28-PathOfExile PathOfExile.exe (Working directory : /home/autra/.PlayOnLinux/wineprefix/pathofexile/drive_c/Program Files/Grinding Gear Games/Path of Exile)
err:module:load_builtin_dll failed to load .so lib for builtin L"WLDAP32.dll": /lib/i386-linux-gnu/libgcrypt.so.20: symbol gpg_err_set_errno, version GPG_ERROR_1.0 not defined in file libgpg-error.so.err:module:import_dll Loading library WLDAP32.dll (which is needed by L"C:\\Program Files\\Grinding Gear Games\\Path of Exile\\PathOfExile.exe") failed (error c000007a).
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\Grinding Gear Games\\Path of Exile\\PathOfExile.exe" failed, status c0000135

 

Any idea?

Thanks!

Replies

Thursday 21 May 2015 at 18:48
You need to install the 32-bit version of libgcrypt on your Linux system. That should fix it.
Thursday 21 May 2015 at 19:11
I thought it was added to Wine packages, just to be sure the expected version is present... https://www.playonlinux.com/en/issue-4947.html
Maybe that wasn't done for "patched" Wine packages or something?
Thursday 21 May 2015 at 19:25
Oh yeah. I forgot about that whole fiasco. Good point. For sure something to look at.
petch Wednesday 29 April 2015 at 7:24
petch

Warning

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

Message

Change download URL to https://www.pathofexile.com/downloads/PathOfExileInstaller.msi

Differences

@@ -20,7 +20,7 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.5.28-PathOfExile"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi"
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

backad Wednesday 29 April 2015 at 2:18
backad

Warning

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

Message

---Português/Portugues--

Boa noite.

Ao criador do script: Por favor, edite a linha do download:

POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"

Para:

POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi"

Motivo: A URL não está funcionando, travando na metade do download.

Desculpe meu inglês ruim, mas estou usando um tradutor.

Obrigado, fique com Deus. smiley

 

--Inglês/English---

Good night.
 
The script creator: Please edit the line of download:
 
POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
 
To:
 
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi"
 
Reason: The URL is not working, locking in the middle of the download.
 
Sorry my bad English, but I am using a translator.
 
Thank you, stay with God. smiley

Differences

@@ -20,7 +20,7 @@
 POL_System_TmpCreate "$PREFIX"
 
 cd "$POL_System_TmpDir"
-POL_Download "http://webcdn.pathofexile.com/downloads/PathOfExileInstaller.msi"
+POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi" # << The of URL here
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"
 

New source code

#!/bin/bash
# Date : 2012-08-16 21-12
# Last revision : 2012-09-25 22-23
# Wine version used : 1.4
# Distribution used to test : Gentoo x86_64
# Author : xyz

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

TITLE="Path of Exile"
PREFIX="pathofexile"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Grinding Gear Games" "http://www.pathofexile.com" "xyz" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.5.28-PathOfExile"

POL_System_TmpCreate "$PREFIX"

cd "$POL_System_TmpDir"
POL_Download "https://www.pathofexile.com/downloads/PathOfExileInstaller.msi" # << The of URL here
POL_Wine_WaitBefore "$TITLE"
POL_Wine msiexec /i "$POL_System_TmpDir/PathOfExileInstaller.msi"

POL_System_TmpDelete

POL_Wine_OverrideDLL "native,builtin" "openal32"

POL_Shortcut "PathOfExile.exe" "$TITLE" "$TITLE.png"
 
POL_SetupWindow_Close
exit

Replies

terryc Friday 17 April 2015 at 11:10
terryc Anonymous

Message

In certain zones/maps; the Siren cove caverns and the catacombs, I loose the top right quarter to all white. Also occassionally, small black squares(<= 1/16 ofscreen) replace floor textures. Is there a jargon term to describe ythis.

Has anyone seen this problem? I'm trying to work out if it is a PoL setting or AMD driver problem(three different Cat drivers on two cards, both PCIe16x).

Debian Wheezy, AMD64,  8 core cpu.

PoL is 1.7.9-PathofExile(been occuring since first installed on earlier versions).

All settings are default or enabled. Vid is 1024Mb, DDR is opengl.

 

Apart from this problem, the games has been good(hint, don't start multiple characters at once because you have to do the same stuff three times= Diable like).).

 

 

 

Replies

factotum218 Thursday 2 October 2014 at 3:04
factotum218 Anonymous

Message

A patch was released on Oct. 1, 2014 that has made the default Path of Exile install (Wine 1.5, etc) give the error: "Failed resetting Direct3D device objects."

I'm not sure the cause of it but will report anything back as I tinker with the installation.

 

Xubuntu 14.04

Radeon HD 68xx

Playonlinux: 4.2.2

Wine: 1.5.28-PathOfExile (Default)

GLSL Support enabled

Direct Draw Renderer opengl

Video memory size 1024

Offscreen rendering mode fbo

everything else default

Replies

Anonymous
Wednesday 19 November 2014 at 18:58
I'm getting the same error on my MacBook Pro, 2.5 GHz Intel Core i5, 16GB 1600 MGz DDR3. Would love it if this would work on my mac! :)
adrizein Saturday 7 June 2014 at 20:24
adrizein Anonymous

Message

The game is rather playable with maxed out graphics in 1920*1080 (i5-2500K, nVidia GTX560) although it sometimes freezes for a moment in the middle of a combat and then the keyboard would not respond anymore. Pausing the game solves the problem IIRC. Those problems basically make hardcore mode unplayable.

There is also a lag problem, but it might just be due to PoE's servers.

Very minor problem : the desktop icon doesn't have a transparent background (white).

Replies

Anonymous
Thursday 13 August 2015 at 22:47
http://pathofexile.gamepedia.com/Path_of_Exile_on_Wine you need to add libraries such: riched20 riched32 usp10
Anonymous
Thursday 13 August 2015 at 23:09
fixme:d3d:resource_check_usage Unhandled usage flags 0x8. (spam in my log) ubuntu unity 14.04.03 LTS x64......seems messing up my 16:10 monitor 1920x1200 to 1600x1200 then loading but half of window rendered out of view, even though I have full screen configuration via PoE options.
Anonymous
Saturday 5 March 2016 at 20:57
WINED3DFMT_B5G5R5A1_UNORM, dst_format WINED3DFMT_B5G6R5_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x30148c8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_REF, src_format WINED3DFMT_B5G5R5X1_UNORM, dst_format WINED3DFMT_B5G6R5_UNORM stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x30148c8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub! cant go full screen using openal32 (internal works with my AD1988B), msvcr100 native, buildin (vcrun2010), riched20 and usp10 native, builtin with * like these "*riched20" just tried 1.7.55, 1.8 doublebuffer but http://pathofexile.gamepedia.com/Launch_options the game itself seems doesn't have such launch options and for now I just can't open up full screen even on 1.9.5 x86-32 bit version of wine. Launcher works a little better on 1.9.5 but it seems dst_format WINED3DFMT_B8G8R8X8_UNORM is unsopported somehow, using NVIDIA 361.28 WHQL from here http://www.geforce.com/drivers/results/98373 and Sabayon latest rolling release....just updated it week ago and also I tried to install missing libraries so openAL and menu fonts is solved problem for me, but somehow these B8G8R8X8 texture format does not work in any x86 version of wine.
Anonymous
Saturday 5 March 2016 at 20:58
That's it I thought it happens with new path of exile content update and it seems nor wine nor latest nvidia driver does not support DST format conversions fixme:d3d:wined3d_check_device_format_conversion wined3d 0x30148c8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format that is the dead end or is there any possibilities to solve these by installing dx3d9 libs?
Anonymous
Saturday 5 March 2016 at 21:43
And actually I have full screen working under Heroes of the storm and League of Legends complete and normally, these quite strange cause errors showed up in debug window points to dst compression texture format conversions between one or more formats.
Anonymous
Saturday 5 March 2016 at 21:45
If anyone can figure out what happens with these latest POE game client update please post any info on winehq or here so I can try to edit my wine prefix to fulfill requirements.