Path of Exile
Informations
Creator | Wiadmości |
---|---|
xyz
![]()
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks10 8 DescriptionFree 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'. ScreenshotsSource 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:
ContributeMember | Wiadmości |
poenotworking | Thursday 1 April 2021 at 22:40 |
poenotworking
![]()
|
WarningThis update has not been approved yet by the team. WiadmościOutdated 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 OdpowiedziEdytowane przez poenotworking |
Dadu042 | Thursday 23 May 2019 at 21:06 |
Dadu042
![]()
|
InformationThis update has been approved by the team. WiadmościI 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 OdpowiedziSunday 25 August 2019 at 2:31
Edytowane przez Dadu042 |
deanmsands3 | Monday 12 March 2018 at 20:56 |
deanmsands3
![]()
|
WarningThis update has not been approved yet by the team. 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 OdpowiedziMonday 12 March 2018 at 21:21
|
contessaxd | Wednesday 7 March 2018 at 21:55 |
contessaxd
![]()
|
WarningThis update has not been approved yet by the team. 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 OdpowiedziMonday 12 March 2018 at 20:58
|
yazeed | Friday 2 February 2018 at 6:58 |
yazeed
![]()
|
WarningThis update has not been approved yet by the team. 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 Odpowiedzi |
yazeed | Friday 2 February 2018 at 6:53 |
yazeed
![]()
|
WarningThis update has not been approved yet by the team. 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 OdpowiedziFriday 2 February 2018 at 6:54
|
Emalkartha | Wednesday 10 May 2017 at 7:45 |
Emalkartha
![]()
|
WiadmościHave to give this a big thumbs down for Mac players. Wine crashes on the game installing every time, no matter what i try. OdpowiedziSunday 8 October 2017 at 6:52
Sunday 8 October 2017 at 11:20
Tuesday 31 October 2017 at 17:10
|
Aeronic | Wednesday 26 April 2017 at 22:35 |
Aeronic
![]()
|
WarningThis update has not been approved yet by the team. 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 OdpowiedziWednesday 26 April 2017 at 22:36
Monday 8 May 2017 at 18:08
Tuesday 6 June 2017 at 10:49
|
hochl | Saturday 25 March 2017 at 14:24 |
hochl
![]()
|
WiadmościI have been running POE with playonlinux on Debian for a while. Here are two insights:
Odpowiedzi |
prarus7 | Thursday 19 January 2017 at 7:43 |
prarus7
![]()
|
|
bspmen | Monday 28 November 2016 at 12:23 |
bspmen
![]()
|
|
sherkhan | Saturday 27 August 2016 at 18:22 |
sherkhan
![]()
|
WiadmościAny 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! Odpowiedzi |
kartoffelopa | Tuesday 1 March 2016 at 22:21 |
kartoffelopa
![]()
|
WiadmościHello, 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.
OdpowiedziTuesday 1 March 2016 at 22:23
|
petch | Friday 4 December 2015 at 23:02 |
petch
![]()
|
WarningThis update has not been approved yet by the team. WiadmościAdd 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 Odpowiedzi |
RobLoach | Sunday 22 November 2015 at 6:21 |
RobLoach
![]()
|
WarningThis update has not been approved yet by the team. WiadmościFunctions 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 Odpowiedzi |
hsusonic | Tuesday 6 October 2015 at 13:08 |
hsusonic
![]()
|
WiadmościHi, 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 OdpowiedziMonday 23 November 2015 at 19:30
|
zaggynl | Sunday 23 August 2015 at 20:15 |
zaggynl
![]()
|
WiadmościRuns out of the box without any errors or crashes but performance isn't very good. Haven't had any luck getting PoE to work on later wine versions (black screen) has anyone else? OdpowiedziMonday 31 August 2015 at 17:48
|
idcat71210 | Monday 10 August 2015 at 6:53 |
idcat71210
![]()
|
Wiadmościhi,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 Odpowiedzi |
JureGr | Wednesday 8 July 2015 at 19:23 |
JureGr
![]()
|
WiadmościGame 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) Antergos linux 64bit OdpowiedziWednesday 8 July 2015 at 19:32
Wednesday 8 July 2015 at 19:33
Wednesday 8 July 2015 at 19:50
Wednesday 8 July 2015 at 19:56
Wednesday 8 July 2015 at 19:57
Wednesday 8 July 2015 at 20:08
Wednesday 8 July 2015 at 20:20
Wednesday 8 July 2015 at 20:33
Wednesday 8 July 2015 at 21:16
|
autra | Thursday 21 May 2015 at 12:15 |
autra
![]()
|
WiadmościOn 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)
Any idea? Thanks! OdpowiedziThursday 21 May 2015 at 18:48
Thursday 21 May 2015 at 19:11
Thursday 21 May 2015 at 19:25
|
petch | Wednesday 29 April 2015 at 7:24 |
petch
![]()
|
WarningThis update has not been approved yet by the team. WiadmościChange 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 Odpowiedzi |
backad | Wednesday 29 April 2015 at 2:18 |
backad
![]()
|
WarningThis update has not been approved yet by the team. Wiadmości---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.
--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.
![]() 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 Odpowiedzi |
terryc | Friday 17 April 2015 at 11:10 |
terryc
![]()
|
WiadmościIn 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).).
Odpowiedzi |
factotum218 | Thursday 2 October 2014 at 3:04 |
factotum218
![]()
|
WiadmościA 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 OdpowiedziWednesday 19 November 2014 at 18:58
|
adrizein | Saturday 7 June 2014 at 20:24 |
adrizein
![]()
|
WiadmościThe 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). Odpowiedzi |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com