Hearthstone
Informations
Creator | Message |
---|---|
kweepeer2
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks56 46 DescriptionHearthstone is a fast-paced strategic card-game from Blizzard. Free-to-play. Source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : see changelog # Wine version used : see below # Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [kweepeer2] (2014-02-08) # First script # [iArska] (2018-01-28) # Misc. # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 # [Dadu042] (2020-11-01 18:00) # Wine 4.0.2 -> 4.0.4 # Move "-force-d3d9" from warning message to automatic argument. # POL_System_SetArch "x86" (32 bits). Required for Dotnet40, because default is 64bits nowadays. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "4.0.4" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Disabled because 32bits only (was used with Wine v2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" POL_Wine_OverrideDLL "" "locationapi" POL_Wine_OverrideDLL "" "nvapi" POL_Wine_OverrideDLL "" "nvapi64" POL_Wine_OverrideDLL "native,builtin" "ucrtbase" # cat << EOF > hearhstone_fix.reg REGEDIT4 [HKCU\software\Wine\X11 Driver] UseTakeFocus="no" EOF POL_Wine regedit.exe hearhstone_fix.reg POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "-force-d3d9" "Game;CardGame;" # Useless as of 2020-10. # POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
kmelia | Wednesday 24 February 2021 at 18:24 |
kmelia
|
MessageAvec la dernière énorme mise à jour du client Battle.net, on a le droit à un écran noir lors de l'affichage du client. En fait, il manque Direct3D 11 qu'il faut ajouter ! Si ça intéresse des gens, j'ai mis à jour mon script : https://cameliaweb.fr/blog/jeux-video-gaming/bienvenue-sur-le-nouveau-battle-net RepliesEdited by kmelia |
Dick Tracy | Monday 28 December 2020 at 23:12 |
Dick Tracy
|
MessageBlizzard launcher and game runs well after changing from wine 4.0.4 to 5.0-rc4-staging, removing -force-d3d9 and disable Browser Hadware Acceleration in Blizzard launcher settings menu. Replies |
Dadu042 | Sunday 1 November 2020 at 18:18 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -17,6 +17,10 @@ # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 +# [Dadu042] (2020-11-01 18:00) +# Wine 4.0.2 -> 4.0.4 +# Move "-force-d3d9" from warning message to automatic argument. +# POL_System_SetArch "x86" (32 bits). Required for Dotnet40, because default is 64bits nowadays. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -31,19 +35,20 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "4.0.4" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts -# Disabled because 32bits only (was used with Wine 2) +# Disabled because 32bits only (was used with Wine v2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 -# Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 +# Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" @@ -115,9 +120,10 @@ POL_SetupWindow_VMS "256" POL_Wine_reboot -POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "-force-d3d9" "Game;CardGame;" -POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" +# Useless as of 2020-10. +# POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : see changelog # Wine version used : see below # Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [kweepeer2] (2014-02-08) # First script # [iArska] (2018-01-28) # Misc. # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 # [Dadu042] (2020-11-01 18:00) # Wine 4.0.2 -> 4.0.4 # Move "-force-d3d9" from warning message to automatic argument. # POL_System_SetArch "x86" (32 bits). Required for Dotnet40, because default is 64bits nowadays. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "4.0.4" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Disabled because 32bits only (was used with Wine v2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" POL_Wine_OverrideDLL "" "locationapi" POL_Wine_OverrideDLL "" "nvapi" POL_Wine_OverrideDLL "" "nvapi64" POL_Wine_OverrideDLL "native,builtin" "ucrtbase" # cat << EOF > hearhstone_fix.reg REGEDIT4 [HKCU\software\Wine\X11 Driver] UseTakeFocus="no" EOF POL_Wine regedit.exe hearhstone_fix.reg POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "-force-d3d9" "Game;CardGame;" # Useless as of 2020-10. # POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Sunday 1 November 2020 at 17:04 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageWine 4.0.2 -> 4.0.4 Differences@@ -31,7 +31,7 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "4.0.2" +POL_Wine_PrefixCreate "4.0.4" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : see changelog # Wine version used : see below # Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [kweepeer2] (2014-02-08) # First script # [iArska] (2018-01-28) # Misc. # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "4.0.4" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Disabled because 32bits only (was used with Wine 2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" POL_Wine_OverrideDLL "" "locationapi" POL_Wine_OverrideDLL "" "nvapi" POL_Wine_OverrideDLL "" "nvapi64" POL_Wine_OverrideDLL "native,builtin" "ucrtbase" # cat << EOF > hearhstone_fix.reg REGEDIT4 [HKCU\software\Wine\X11 Driver] UseTakeFocus="no" EOF POL_Wine regedit.exe hearhstone_fix.reg POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
lem0nade | Sunday 1 November 2020 at 15:25 |
lem0nade
|
WarningThis update has not been approved yet by the team. MessageI believe a quote " is missing Differences@@ -115,7 +115,7 @@ POL_SetupWindow_VMS "256" POL_Wine_reboot -POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame; +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : see changelog # Wine version used : see below # Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [kweepeer2] (2014-02-08) # First script # [iArska] (2018-01-28) # Misc. # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "4.0.2" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Disabled because 32bits only (was used with Wine 2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" POL_Wine_OverrideDLL "" "locationapi" POL_Wine_OverrideDLL "" "nvapi" POL_Wine_OverrideDLL "" "nvapi64" POL_Wine_OverrideDLL "native,builtin" "ucrtbase" # cat << EOF > hearhstone_fix.reg REGEDIT4 [HKCU\software\Wine\X11 Driver] UseTakeFocus="no" EOF POL_Wine regedit.exe hearhstone_fix.reg POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 1 November 2020 at 17:03
|
Dadu042 | Wednesday 13 November 2019 at 15:51 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageSome changes inspired from reports in Appdb.winehq.org Game not tested (I stopped at the Blizzard login screen). Differences@@ -1,47 +1,70 @@ #!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 -# Last revision : 2019-05-25 +# Last revision : see changelog # Wine version used : see below -# Distribution used to test : Xubuntu 19.04 x64 +# Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 - + # CHANGELOG -# [Dadu042] (2019-05-25 22-40) -# Wine 2.21-staging -> 2.22 +# [kweepeer2] (2014-02-08) +# First script # [iArska] (2018-01-28) # Misc. - +# [Dadu042] (2019-05-25 22-40) +# Wine 2.21-staging -> 2.22 +# [Dadu042] (2019-11-31 15:30) +# Wine 2.22 -> 4.0.2 +# Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" - + 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 1950 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "2.22" - +POL_Wine_PrefixCreate "4.0.2" + # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts -POL_Call POL_Install_ie8 -POL_Wine_OverrideDLL "native,builtin" "msvcp140" - + +# Disabled because 32bits only (was used with Wine 2) +# POL_Call POL_Install_ie8 + # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 - + +# Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 +POL_Wine_OverrideDLL "native,builtin" "msvcp140" +POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" +POL_Wine_OverrideDLL "" "d3d12" +POL_Wine_OverrideDLL "" "locationapi" +POL_Wine_OverrideDLL "" "nvapi" +POL_Wine_OverrideDLL "" "nvapi64" +POL_Wine_OverrideDLL "native,builtin" "ucrtbase" +# +cat << EOF > hearhstone_fix.reg +REGEDIT4 +[HKCU\software\Wine\X11 Driver] +UseTakeFocus="no" +EOF +POL_Wine regedit.exe hearhstone_fix.reg +POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" + + # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" - + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ @@ -78,21 +101,23 @@ *) exit 1;; esac - + SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" - + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete - + POL_SetupWindow_VMS "256" POL_Wine_reboot + +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame; + +POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" -POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" -POL_SetupWindow_Close - +POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : see changelog # Wine version used : see below # Distribution used to test : ubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [kweepeer2] (2014-02-08) # First script # [iArska] (2018-01-28) # Misc. # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [Dadu042] (2019-11-31 15:30) # Wine 2.22 -> 4.0.2 # Apply some changes found in this report: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "4.0.2" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Disabled because 32bits only (was used with Wine 2) # POL_Call POL_Install_ie8 # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Changes (2019-11-13) according: https://appdb.winehq.org/objectManager.php?sClass=version&iId=30038 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "native,builtin" "api-ms-win-crt-pricate-l1-1-0" POL_Wine_OverrideDLL "" "d3d12" POL_Wine_OverrideDLL "" "locationapi" POL_Wine_OverrideDLL "" "nvapi" POL_Wine_OverrideDLL "" "nvapi64" POL_Wine_OverrideDLL "native,builtin" "ucrtbase" # cat << EOF > hearhstone_fix.reg REGEDIT4 [HKCU\software\Wine\X11 Driver] UseTakeFocus="no" EOF POL_Wine regedit.exe hearhstone_fix.reg POL_Wine_WaitExit "$(eval_gettext 'Registry fix for X11.')" # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame; POL_SetupWindow_message "$(eval_gettext 'WARNING:\nAfter exiting, select Hearhstone, then click Options -> Game Settings -> Additional Command Line Arguments, then do write: -force-d3d9')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
Dadu042 | Saturday 25 May 2019 at 0:58 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageChanges wrote in the changelog. Differences@@ -1,40 +1,47 @@ #!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 -# Last revision : 2018-01-27 22:32 -# Wine version used : 2.19-staging -# Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux +# Last revision : 2019-05-25 +# Wine version used : see below +# Distribution used to test : Xubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 + +# CHANGELOG +# [Dadu042] (2019-05-25 22-40) +# Wine 2.21-staging -> 2.22 +# [iArska] (2018-01-28) +# Misc. + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" - + 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 1950 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "2.21-staging" - +POL_Wine_PrefixCreate "2.22" + # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" - + # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 - + # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" - + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ @@ -71,21 +78,21 @@ *) exit 1;; esac - + SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" - + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete - + POL_SetupWindow_VMS "256" POL_Wine_reboot - -POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" + +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" POL_SetupWindow_Close - + exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : 2019-05-25 # Wine version used : see below # Distribution used to test : Xubuntu 19.04 x64 # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 # CHANGELOG # [Dadu042] (2019-05-25 22-40) # Wine 2.21-staging -> 2.22 # [iArska] (2018-01-28) # Misc. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.22" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" "Game;CardGame;" POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
iArska | Sunday 28 January 2018 at 0:39 |
iArska
|
WarningThis update has not been approved yet by the team. MessageNote for running Hearthstone: in Blizzard app, from Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 In addition, it seems also StarCraft II works somehow but I didn't tested much. Differences@@ -1,79 +1,91 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 -# Last revision : 2016-08-07 13:41 -# Wine version used : 1.9.16 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Last revision : 2018-01-27 22:32 +# Wine version used : 2.19-staging +# Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) -# Depend : +# Depend : +# NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" - + 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 1950 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.18" - +POL_Wine_PrefixCreate "2.21-staging" + # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts +POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" - + +# Fix Fireside Gathering search +POL_Call POL_Install_dotnet40 + +# Set OS after .NET install +# to upgrade on win10, only .NET 4.6 is compliant, and not available on POL +Set_OS "win7" + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") - EXE_FILE="Hearthstone-Setup-enUS.exe";; + LANG="enUS";; "Español (AL)") - EXE_FILE="Hearthstone-Setup-esMX.exe";; + LANG="esMX";; "Português (BR)") - EXE_FILE="Hearthstone-Setup-ptBR.exe";; + LANG="ptBR";; "English (EU)") - EXE_FILE="Hearthstone-Setup-enGB.exe";; + LANG="enGB";; "Deutsch") - EXE_FILE="Hearthstone-Setup-deDE.exe";; + LANG="deDE";; "Español (EU)") - EXE_FILE="Hearthstone-Setup-esES.exe";; + LANG="esES";; "Português (EU)") - EXE_FILE="Hearthstone-Setup-ptPT.exe";; + LANG="ptPT";; "Français") - EXE_FILE="Hearthstone-Setup-frFR.exe";; + LANG="frFR";; "Russian") - EXE_FILE="Hearthstone-Setup-ruRU.exe";; + LANG="ruRU";; "Italiano") - EXE_FILE="Hearthstone-Setup-itIT.exe";; + LANG="itIT";; "Polski") - EXE_FILE="Hearthstone-Setup-plPL.exe";; + LANG="plPL";; "Korean") - EXE_FILE="Hearthstone-Setup-koKR.exe";; + LANG="koKR";; "Chinese (Taiwan)") - EXE_FILE="Hearthstone-Setup-zhTW.exe";; + LANG="zhTW";; "Chinese (China)") - EXE_FILE="Hearthstone-Setup-zhCN.exe";; + LANG="zhCN";; *) exit 1;; esac - + +SHORTCUT_FILE="Battle.net Launcher.exe" +EXE_FILE="Hearthstone-Setup-$LANG.exe" + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" -POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" +POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete - -POL_SetupWindow_VMS "64" + +POL_SetupWindow_VMS "256" POL_Wine_reboot - -POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" + +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close - -exit 0 + +exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : 2018-01-27 22:32 # Wine version used : 2.19-staging # Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : # NOTE! From Options -> Game Settings -> Additional Command Line Arguments (for Hearthstone), write: -force-d3d9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.21-staging" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
pashr | Sunday 24 September 2017 at 15:44 |
pashr
|
MessageHi guys, when i start the Battle.net Launcher via playonlinux it takes about 5-10 mins till Battle.net is up. Am I the only one with this behaviour? Is there a way to fix/optimize the startup? RepliesMonday 25 September 2017 at 12:05
|
Oria | Thursday 21 September 2017 at 23:18 |
Oria
|
MessageHello, L'installation fonctionne mais : - Pendant l'installation, j'ai Internet explorer 8 non compatible avec la version de windows. - Au lancement de battle.net, il est impossible de se logguer car les cookies sont désactivés.
Bon courage! RepliesFriday 22 September 2017 at 1:12
|
hex0910 | Monday 18 September 2017 at 21:55 |
hex0910
|
WarningThis update has not been approved yet by the team. MessageOkay guys so I spent a day trying to run battle net and hearthstone. Finally i did it by changing the wine version to 2.16 staging, installing ie8 and disabling dbghelp. Here's the updated script. Differences@@ -19,12 +19,14 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.18" +POL_Wine_PrefixCreate "2.16-staging" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts +POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" +POL_Wine_OverrideDLL "disabled" "dbghelp" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-08-07 13:41 # Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.16-staging" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Call POL_Install_ie8 POL_Wine_OverrideDLL "native,builtin" "msvcp140" POL_Wine_OverrideDLL "disabled" "dbghelp" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesMonday 18 September 2017 at 22:17
Monday 25 September 2017 at 7:24
Monday 25 September 2017 at 7:57
Saturday 9 December 2017 at 14:01
|
kmelia | Wednesday 6 September 2017 at 17:01 |
kmelia
|
MessageI have created a new application https://www.playonlinux.com/en/app-3242-HearthStone_Blizzard_Application.html to get the script up to date. Replies |
sorawotobu | Saturday 2 September 2017 at 21:01 |
sorawotobu
|
MessageI can log in and get to the Tavern Door screen, after a few seconds my friends list becomes visible and then Hearthstone immediately crashes. I tried different Wine versions, different Windows versions, and uninstalling and reinstalling Wine and Hearthstone. RepliesSunday 3 September 2017 at 16:23
Monday 4 September 2017 at 2:59
|
Doc.C | Wednesday 23 August 2017 at 8:33 |
Doc.C
|
MessageI installed version from the Install menu and changed Wine version to 2.5 and got this working. There is at least one graphical bug but it shouldn't affect gameplay. The bug is that in some hover menus background turns black. RepliesWednesday 23 August 2017 at 23:03
Thursday 24 August 2017 at 11:40
Sunday 3 September 2017 at 13:06
Monday 4 September 2017 at 18:53
Wednesday 6 September 2017 at 0:07
Wednesday 6 September 2017 at 16:29
Wednesday 6 September 2017 at 20:11
|
tanaydin | Friday 18 August 2017 at 0:09 |
tanaydin
|
WarningThis update has not been approved yet by the team. Differences@@ -19,12 +19,12 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.18" +POL_Wine_PrefixCreate "2.14" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts -POL_Wine_OverrideDLL "native,builtin" "msvcp140" +POL_Wine_OverrideDLL "native,builtin" "*msvcr90" "msvcp100" "dbghelp" "api-ms-win-crt-runtime-l1-1-0" "ucrtbase.dll" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone @@ -76,4 +76,7 @@ POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close +Set_OS "winxp" + + exit 0 New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-08-07 13:41 # Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.14" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "*msvcr90" "msvcp100" "dbghelp" "api-ms-win-crt-runtime-l1-1-0" "ucrtbase.dll" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close Set_OS "winxp" exit 0 RepliesSaturday 19 August 2017 at 9:38
|
tanaydin | Thursday 17 August 2017 at 23:24 |
tanaydin
|
WarningThis update has not been approved yet by the team. Differences@@ -19,7 +19,7 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.18" +POL_Wine_PrefixCreate "2.14" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-08-07 13:41 # Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.14" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
MaReeo | Thursday 17 August 2017 at 12:25 |
MaReeo
|
MessageHello! RepliesThursday 17 August 2017 at 12:39
|
Arizs | Wednesday 9 August 2017 at 8:36 |
Arizs
|
MessageHi, Since 3 years I play Hearthstone on linux until presente no probleme but since 3 weeks my Battle.net meet probleme. When I start Battle.net a probleme arise "This application meet error unexpected" so I uninstall and intall from PlayOnLinux but always this probleme. I think that probleme is the version Windows XP use who it not more compatile. It's information announce by Blizzard. So Can you reprogram Hearthstone in Windows 7 or How change operating systeme ? Thank you, Arisz RepliesWednesday 9 August 2017 at 8:38
|
Picon | Friday 21 July 2017 at 13:39 |
Picon
|
MessageHello, I cannot still play Hearthstone, despite @kmelia's script below (2017-06-14 08:32). Battle.net starts, but I am unable to log in whatsoever, because the login buttons have disappeared ("Login to Blizzard/Login via Facebook"). Only the username/password fields are visible, but entering my data and pressing "Enter" does nothing. I have re-installed multiple times the new script, with various tweaks, but to no avail. Furthermore, I am getting this continuous error: "The program Battle.net Helper.exe has encountered a serious problem and needs to close". Library overrides:
Replies |
pashr | Friday 14 July 2017 at 11:36 |
pashr
|
Messagesince yesterday i'm not able to run hearthstone anymore every two seconds a crash report pops up 'The application encountered an unexpecter error.' i don't want to be mean, but i would just not recommend to use PlayOnLinux for Hearthstone (Diablo III is working fine for me), if you like to avoid trouble
Replies |
pashr | Thursday 22 June 2017 at 13:26 |
pashr
|
MessageI have so much trouble with Hearthstone since a few weeks. Did have to reinstall several times.. Now i'm again in the loop where Hearthstone starts and crashes after a few seconds, if i add "dbghelp - disabled" to winecfg, the Battle.Net Client does not show Login buttons I also trief do disable "d3d11", like someone mentioned earlier, but without success. I run it with wine2.5 Do you have any hints? RepliesSaturday 1 July 2017 at 18:45
|
dlee | Friday 16 June 2017 at 5:09 |
dlee
|
MessageI am new to Linux and this is the first thing I tried to do, get Hearthstone. I got this error after trying to install:
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code (0x10fb168f).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:10fb168f ESP:0033ca0c EBP:0033cd38 EFLAGS:00210246( R- -- I Z- -P- )
EAX:00000000 EBX:0033cf64 ECX:0243ee20 EDX:fffffffc
ESI:0251a880 EDI:04e18000
Stack dump:
0x0033ca0c: 0243ee20 04e18000 0033d748 0000ca38
0x0033ca1c: 12a2fc5c 0033ca2c 00000400 00000000
0x0033ca2c: 0033e4e7 0033cbec 0033e99c 0033e4e7
0x0033ca3c: ffffffff ffffffff 00000000 00000000
0x0033ca4c: ffffffff 00000084 00000000 ffffffff
0x0033ca5c: ffffffff 00000000 00000000 ffffffff
Backtrace:
=>0 0x10fb168f in libcef (+0xfb168f) (0x0033cd38)
1 0x10fb59f9 in libcef (+0xfb59f8) (0x0033cd88)
2 0x11038ec4 in libcef (+0x1038ec3) (0x0033cefc)
3 0x110396be in libcef (+0x10396bd) (0x0033d020)
....
000000b7 0
<>000000b4 0 <==
System information:
Wine build: wine-1.9.18
Platform: i386
Version: Windows XP
Host system: Linux
Host version: 4.4.0-53-generic
<>RepliesEdited by Dadu042 |
kmelia | Wednesday 14 June 2017 at 12:41 |
kmelia
|
WarningThis update has not been approved yet by the team. MessageList of changes :
Differences@@ -1,10 +1,10 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 -# Last revision : 2016-08-07 13:41 -# Wine version used : 1.9.16 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Last revision : 2017-06-14 08:32 +# Wine version used : 2.9-staging +# Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) -# Depend : +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -19,61 +19,71 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.18" +POL_Wine_PrefixCreate "2.9-staging" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" +# Fix Fireside Gathering search +POL_Call POL_Install_dotnet40 + +# Set OS after .NET install +# to upgrade on win10, only .NET 4.6 is compliant, and not available on POL +Set_OS "win7" + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") - EXE_FILE="Hearthstone-Setup-enUS.exe";; + LANG="enUS";; "Español (AL)") - EXE_FILE="Hearthstone-Setup-esMX.exe";; + LANG="esMX";; "Português (BR)") - EXE_FILE="Hearthstone-Setup-ptBR.exe";; + LANG="ptBR";; "English (EU)") - EXE_FILE="Hearthstone-Setup-enGB.exe";; + LANG="enGB";; "Deutsch") - EXE_FILE="Hearthstone-Setup-deDE.exe";; + LANG="deDE";; "Español (EU)") - EXE_FILE="Hearthstone-Setup-esES.exe";; + LANG="esES";; "Português (EU)") - EXE_FILE="Hearthstone-Setup-ptPT.exe";; + LANG="ptPT";; "Français") - EXE_FILE="Hearthstone-Setup-frFR.exe";; + LANG="frFR";; "Russian") - EXE_FILE="Hearthstone-Setup-ruRU.exe";; + LANG="ruRU";; "Italiano") - EXE_FILE="Hearthstone-Setup-itIT.exe";; + LANG="itIT";; "Polski") - EXE_FILE="Hearthstone-Setup-plPL.exe";; + LANG="plPL";; "Korean") - EXE_FILE="Hearthstone-Setup-koKR.exe";; + LANG="koKR";; "Chinese (Taiwan)") - EXE_FILE="Hearthstone-Setup-zhTW.exe";; + LANG="zhTW";; "Chinese (China)") - EXE_FILE="Hearthstone-Setup-zhCN.exe";; + LANG="zhCN";; *) exit 1;; esac +SHORTCUT_FILE="Battle.net Launcher.exe" +EXE_FILE="Hearthstone-Setup-$LANG.exe" + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" -POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" +POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete -POL_SetupWindow_VMS "64" +POL_SetupWindow_VMS "256" POL_Wine_reboot -POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : 2017-06-14 08:32 # Wine version used : 2.9-staging # Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.9-staging" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Fix Fireside Gathering search POL_Call POL_Install_dotnet40 # Set OS after .NET install # to upgrade on win10, only .NET 4.6 is compliant, and not available on POL Set_OS "win7" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "256" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesSaturday 1 July 2017 at 1:01
Saturday 1 July 2017 at 18:45
Monday 3 July 2017 at 9:04
Friday 14 July 2017 at 12:05
Friday 14 July 2017 at 12:45
Tuesday 18 July 2017 at 16:10
Tuesday 18 July 2017 at 16:34
Tuesday 18 July 2017 at 16:35
Wednesday 19 July 2017 at 23:56
Wednesday 19 July 2017 at 23:58
|
kmelia | Tuesday 13 June 2017 at 18:22 |
kmelia
|
WarningThis update has not been approved yet by the team. MessageUpdate comments and simplify code without blank line with space Differences@@ -1,10 +1,10 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 -# Last revision : 2016-08-07 13:41 -# Wine version used : 1.9.16 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Last revision : 2017-06-13 19:41 +# Wine version used : 1.9.18 +# Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) -# Depend : +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -32,48 +32,51 @@ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") - EXE_FILE="Hearthstone-Setup-enUS.exe";; + LANG="enUS";; "Español (AL)") - EXE_FILE="Hearthstone-Setup-esMX.exe";; + LANG="esMX";; "Português (BR)") - EXE_FILE="Hearthstone-Setup-ptBR.exe";; + LANG="ptBR";; "English (EU)") - EXE_FILE="Hearthstone-Setup-enGB.exe";; + LANG="enGB";; "Deutsch") - EXE_FILE="Hearthstone-Setup-deDE.exe";; + LANG="deDE";; "Español (EU)") - EXE_FILE="Hearthstone-Setup-esES.exe";; + LANG="esES";; "Português (EU)") - EXE_FILE="Hearthstone-Setup-ptPT.exe";; + LANG="ptPT";; "Français") - EXE_FILE="Hearthstone-Setup-frFR.exe";; + LANG="frFR";; "Russian") - EXE_FILE="Hearthstone-Setup-ruRU.exe";; + LANG="ruRU";; "Italiano") - EXE_FILE="Hearthstone-Setup-itIT.exe";; + LANG="itIT";; "Polski") - EXE_FILE="Hearthstone-Setup-plPL.exe";; + LANG="plPL";; "Korean") - EXE_FILE="Hearthstone-Setup-koKR.exe";; + LANG="koKR";; "Chinese (Taiwan)") - EXE_FILE="Hearthstone-Setup-zhTW.exe";; + LANG="zhTW";; "Chinese (China)") - EXE_FILE="Hearthstone-Setup-zhCN.exe";; + LANG="zhCN";; *) exit 1;; esac +SHORTCUT_FILE="Battle.net Launcher.exe" +EXE_FILE="Hearthstone-Setup-$LANG.exe" + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" -POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" +POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot -POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" +POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : 2014-02-08 14:54 # Last revision : 2017-06-13 19:41 # Wine version used : 1.9.18 # Distribution used to test : Ubuntu 13.10 x64, Ubuntu 14.04 x64, Ubuntu 16.04 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.9.18" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") LANG="enUS";; "Español (AL)") LANG="esMX";; "Português (BR)") LANG="ptBR";; "English (EU)") LANG="enGB";; "Deutsch") LANG="deDE";; "Español (EU)") LANG="esES";; "Português (EU)") LANG="ptPT";; "Français") LANG="frFR";; "Russian") LANG="ruRU";; "Italiano") LANG="itIT";; "Polski") LANG="plPL";; "Korean") LANG="koKR";; "Chinese (Taiwan)") LANG="zhTW";; "Chinese (China)") LANG="zhCN";; *) exit 1;; esac SHORTCUT_FILE="Battle.net Launcher.exe" EXE_FILE="Hearthstone-Setup-$LANG.exe" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/$EXE_FILE" POL_Wine "$POL_System_TmpDir/$EXE_FILE" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "$SHORTCUT_FILE" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
andrikos | Wednesday 7 June 2017 at 20:34 |
andrikos
|
MessageSup guys ... I just installed Hearthstone through PlayOnLinux and when I run it it pop ups for a couple of secs showing the Hearthstone logo and then it closes. Please if you know how to fix it reply. :)
Replies |
hex0910 | Wednesday 7 June 2017 at 14:48 |
hex0910
|
MessageTo run this program, you just have to install it with the playonlinux wizard and then install the core fonts : sudo apt-get install ttf-mscorefonts-installer no need to add any library. Replies |
EfficiencyVI | Friday 2 June 2017 at 3:07 |
EfficiencyVI
|
MessagePatch 8.2.0.19506 brought some serious graphic glitches. When ever I open a menu and when animations happen (even in-game) the whole screen turns black and returns after a few seconds. I tried to reinstall, switched the wine version to 2.9-staging, played around with different settings and blacklisted DirectX11. Nothing seems to work.The game works but it is a pain to play. Any ideas how to fix it? RepliesFriday 2 June 2017 at 15:56
Friday 2 June 2017 at 16:10
Friday 2 June 2017 at 16:13
Friday 2 June 2017 at 18:18
Friday 2 June 2017 at 18:46
Saturday 3 June 2017 at 14:29
Sunday 4 June 2017 at 15:20
Sunday 4 June 2017 at 19:57
Wednesday 7 June 2017 at 20:23
Thursday 8 June 2017 at 6:35
|
Berserker | Thursday 1 June 2017 at 0:38 |
Berserker
|
|
Bouzigouloum | Saturday 29 April 2017 at 23:42 |
Bouzigouloum
|
Message!WARNING! This is due to the fact that once it is clicked, Hearthstone checks for nearby players. But the method called is not implemented yet. Also, it is not possible to disable this feature once it is enabled. 1. Go in the "playonlinux configuration" menu. 2. Press the label "Install Components". 3. Install "msxml3". 4. Finally, install "dotnet40". After that, it should be functionnal again. NOTE: TESTED UNDER WINE 2.5!!! Replies |
DrannorPOL | Tuesday 18 April 2017 at 19:31 |
DrannorPOL
|
MessageAs of HS version 8.0.0.18336 I cannot get this to work on Linuxmint, I can get the Blizzard App to run fine, and the game to start with the tavern sign, then about 2 seconds after you see the bottom left and bottom right icons (friends and options), HS crashes. I've tried all sorts of version of Wine, from 2.6 - 1.9.16, nothing seems to be working, just wondering if anyone else has encountered this issue? RepliesWednesday 19 April 2017 at 16:33
Friday 21 April 2017 at 4:13
Friday 21 April 2017 at 23:43
Monday 24 April 2017 at 0:05
|
Tsumikitty | Tuesday 4 April 2017 at 20:54 |
Tsumikitty
|
MessageAfter the update, Hearthstone fails to load. I press "PLAY" and the icon shows up, but then Hearthstone crashes. Anyone have a fix?
Replies |
mardraze | Sunday 2 April 2017 at 15:18 |
mardraze
|
MessageOn Fedora 22 I had to install fonts: rpm -i https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm See https://us.battle.net/forums/en/hearthstone/topic/20743184131?page=2#post-35 Replies |
DEVV | Wednesday 29 March 2017 at 10:31 |
DEVV
|
MessageIf I try to install hearthstone I get: err:ntdll:RtlpWaitForCriticalSection section 0x7bcfefc8 "../../../dlls/ntdll/loader.c: loader_section" wait timed out in thread 0038, blocked by 0009, retrying (60 sec)
Replies |
sparxx | Saturday 25 March 2017 at 3:10 |
sparxx
|
MessageI'm running Manjaro now and it was working on plain arch before. This helped me to get it running. just need wine-staging installed.
https://forum.manjaro.org/t/how-to-run-hearthstone-with-playonlinux/11321 Replies |
Famekki | Thursday 9 February 2017 at 10:20 |
Famekki
|
MessageI found a solution for the crashing Battle net helper. There's something wrong with Ubuntu's Windows Fonts they need to be removed by typing this into the Terminal. sudo apt remove ttf-mscorefonts-installer After that replace them with Debian's 3.6 version from here: https://packages.debian.org/jessie/all/ttf-mscorefonts-installer/download Download the .deb to your Home folder and install them from the Terminal: sudo dpkg -i ttf-mscorefonts-installer_3.6_all.deb After doing this i was able to log in to Battle.net and play Hearthstone. Replies |
GeorgeCh | Saturday 24 December 2016 at 20:22 |
GeorgeCh
|
MessageOn manjaro 16.10.3 / 64-bit the installer crashes. Installing lib32-libldap ( Lightweight Directory Access Protocol (LDAP) client libraries 32-bit ) with pacman, according to the troubleshooting notes for the Battle.net app on WineHQ, solved the problem. Replies |
RandmSpesfic | Tuesday 29 November 2016 at 1:12 |
RandmSpesfic
|
MessageHEARTHSTONE error on Ubuntu 16.10 Playonlinux. Unhandled exception: unimplemented function api-ms-win-crt-time-l1-1-0.dll._W_Gettnames called in 32-bit code (0x7b83c3ae). This is on Ubuntu 16.10 Install Playonlinux sudo gedit /etc/apt/sources.list deb http://us.archive.ubuntu.com/ubuntu yakkety main multiverse sudo apt-get update sudo apt-get install ttf-mscorefonts-installer Install HEARTHSTONE api-ms-win-crt-runtime-l1-1-0.dll api-ms-win-crt-stdio-l1-1-0.dll ucrtbase vcruntime140 To do that: Configure wine -> Click Libraries and just add all of those above. You need not reboot Ubuntu. Just quit working tasks in playonlinux/configure in the virtual drive and kill running processes and also click on playonlinux / configure the virtual drive and click on reboot that is it HEARTHSTONE works like a charm on Ubuntu 16.10 Replies |
RandmSpesfic | Friday 18 November 2016 at 16:16 |
RandmSpesfic
|
MessageHow to install Wine 1.9.15 in Ubuntu 16.04 1. Open terminal (Ctrl+Alt+T) and run command to add the PPA:
2. For 64-bit system, enable 32 bit architecture (if you haven’t already):
3. For those who use Synaptic Package Manager, launch it, click refresh and search for and install winehq-devel: Or just run the commands below one by one in terminal: sudo apt update sudo apt install --install-recommends winehq-devel RepliesFriday 18 November 2016 at 16:18
Friday 18 November 2016 at 16:21
Friday 18 November 2016 at 16:24
|
treePL | Friday 4 November 2016 at 15:07 |
treePL
|
MessageCheck Troubleshooting from: Replies |
amplustomp | Wednesday 12 October 2016 at 6:44 |
amplustomp
|
MessageAll the process of installation runs very fine, batlle.net initialized without a problem. But, when i press the Play button, all goes black and anything happends. Maybe a do something wrong :(. Or maybe it's something strange with this version.
THANKS Replies |
hunebku | Tuesday 11 October 2016 at 21:37 |
hunebku
|
MessageHello Replies |
bbame55 | Monday 10 October 2016 at 2:52 |
bbame55
|
MessageHearthstone worked well for me until the whole vcrun2015 fiasco a month or so ago. Rather than fight with it myself I decided to wait for an updated installer. When this one showed up I did a fresh install. Everything looked good until I tried to access menus (login screen, battle.net client, and Hearthstone). The menu icons react when I hover over them, but clicking appears to do nothing. I finally figured out that using the up and down keys will render the individual menu items one at a time on the login screen and in the battle.net client - awkward but workable - but that trick doesn't work in Hearthstone itself. Once again I can see "hover" messages, but clicking on the menu doesn't appear to do anything. Using the up/down arrows also does nothing, rendering the game unplayable. In fact to get out at all (because it's in full screen mode and I can't "quit" without access to the menu) I have to alt-tab. Suggestions? Details: Linux Mint 17.3 KDE nvidia card using proprietary nvidia-352 driver PlayOnLinux 4.2.10 Fresh install of Hearthstone using latest script Replies |
tfid | Thursday 8 September 2016 at 22:37 |
tfid
|
WarningThis update has not been approved yet by the team. MessageAll works great again with wine 1.9.18 and just "native,builtin" for "msvcp140"
Differences@@ -19,7 +19,7 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.9.16" +POL_Wine_PrefixCreate "1.9.18" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-08-07 13:41 # Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.9.18" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesTuesday 13 September 2016 at 19:08
Friday 16 September 2016 at 13:59
Saturday 17 September 2016 at 0:01
Monday 21 November 2016 at 23:14
Monday 28 November 2016 at 9:27
|
kweepeer2 | Sunday 7 August 2016 at 14:04 |
kweepeer2
|
WarningThis update has not been approved yet by the team. MessageOk so Wine 1.9.16 is out and it fixes some of the earlier problems. So here is an updated version of the script (do a clean install). Sadly I couldn't do this without dll overrides (needed 1 to make it work), so compatibility is Gold (not Platinum) for this wine version as far as appdb ratings go. But everything seems to work again (including remembering login). @Admins: please approve this version if you are able to, thanks. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2016-05-24 21:20 -# Wine version used : 1.8.2 +# Last revision : 2016-08-07 13:41 +# Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : @@ -19,11 +19,12 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.8.2" +POL_Wine_PrefixCreate "1.9.16" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts +POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-08-07 13:41 # Wine version used : 1.9.16 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.9.16" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts POL_Wine_OverrideDLL "native,builtin" "msvcp140" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
MineElectricity | Thursday 28 July 2016 at 1:40 |
MineElectricity
|
MessageI don't know why, but since yesterday it doesn't work, on POL and Crossover, manual install or no ... RepliesThursday 28 July 2016 at 4:53
Thursday 28 July 2016 at 14:21
Thursday 28 July 2016 at 14:24
Thursday 28 July 2016 at 22:55
Saturday 30 July 2016 at 0:18
Monday 1 August 2016 at 10:15
Thursday 4 August 2016 at 3:48
|
drdillio | Wednesday 13 July 2016 at 9:09 |
drdillio
|
MessageThere is no WINE version 1.8.2 to download from playonmac. How do I install this version, or can you update to some version that is available? Thank you! RepliesFriday 15 July 2016 at 9:14
|
sbrdste | Monday 11 July 2016 at 12:33 |
sbrdste
|
MessageThe Battle.net Helper keeps crashing unless I disable the "dbghelp" DLL, but when it's disabled the Battle.net login form does not load so I can't play the game. Though I could download and install Hearthstone by going on offline mode Replies |
moss | Thursday 30 June 2016 at 0:27 |
moss
|
MessageHi, Thanks for the script it works well except on launch the battle.net client throws an error related to battle net helper. The login logo spins endlessly and connection to server fails. Disabling dbghelp in the dll overrides on wine config seems to fix this issue, this may need addding to the script? Replies |
RobinHood16 | Saturday 11 June 2016 at 0:39 |
RobinHood16
|
MessageOverall, the program runs well, but to get the highest performance, you'll need the latest proprietary (non-free) drivers for your video hardware. Also, the program never sends an "install done" signal back to PlayOnLinux, and when I try to send the signal manually, it makes no difference whether I choose Yes or No -- the pinwheel screen continues to appear. My only recourse is to click Cancel, in which case Hearthstone does not appear in the installed programs list, and I must then go into my Linux distribution's file manager and launch Hearthstone manually ("~/PlayOnLinux's virtual drives/hearthstone/drive_c/Program Files/Hearthstone/Hearthstone.exe"). RepliesWednesday 15 June 2016 at 6:44
Monday 29 August 2016 at 17:57
|
kweepeer2 | Tuesday 24 May 2016 at 21:43 |
kweepeer2
|
WarningThis update has not been approved yet by the team. MessageNew version.
Differences@@ -1,10 +1,10 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2014-08-28 20:30 -# Wine version used : 1.6.2, 1.7.15 +# Last revision : 2016-05-24 21:20 +# Wine version used : 1.8.2 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux -# Author : kweepeer2, m1kc -# Depend : +# Author : kweepeer2, m1kc (+ contributions by many others, thanks!) +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -19,13 +19,11 @@ POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.55" +POL_Wine_PrefixCreate "1.8.2" -# Might not be needed but seen several reports that said it was needed for them to install B.net client -POL_Call POL_Install_flashplayer -# http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 -POL_Wine_OverrideDLL "native,builtin" "dbghelp" -POL_Wine_OverrideDLL "native,builtin" "msvcp100" +# Fix "Battle.net Helper.exe" crash on startup. +POL_Call POL_Install_corefonts +POL_Call POL_Install_RegisterFonts # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-05-24 21:20 # Wine version used : 1.8.2 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.8.2" # Fix "Battle.net Helper.exe" crash on startup. POL_Call POL_Install_corefonts POL_Call POL_Install_RegisterFonts # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesSunday 29 May 2016 at 15:59
|
Sleize | Thursday 14 April 2016 at 21:32 |
Sleize
|
MessageL'installation a bien fonctionné
Le seul défaut est que l'on peut lancer le jeu pendant l'installation et donc qu'après on se dit que le jeu est installé et on ferme le client d'installation , mais au final elle n'était complètement terminée et donc on peut risquer de devoir l'installer 2 fois pour ne pas faire l'erreur de fermer le client.
Mais sinon tout marche Replies |
Osveron | Tuesday 5 April 2016 at 11:34 |
Osveron
|
MessageAfter installing lib32-libldap from arch repository everything works well. Could the script check if that package is installed or at least prompt the user to check it? Replies |
bunnyapocalypse | Tuesday 29 March 2016 at 0:24 |
bunnyapocalypse
|
MessageAs of today, I can not set my reigon in the initial battle.net login, making it impossible for me to install the program. RepliesWednesday 30 March 2016 at 3:23
|
Ludius | Thursday 24 March 2016 at 18:14 |
Ludius
|
|
amp | Friday 4 March 2016 at 3:25 |
amp
|
MessageThe game works fine in virtual desktop mode. However starting it normally fails oddly and silently, probably due to my multi-monitor config. It would be awesome to have an option to set it up this way. The obvious way to change it to virtual desktop mode (winecfg from inside PlayOnLinux) is not reliable though it did work after randomly fiddling with it for a bit. Replies |
kweepeer2 | Monday 22 February 2016 at 21:04 |
kweepeer2
|
WarningThis update has not been approved yet by the team. MessageThe script is quite old and meanwhile Hearthstone has platinum rating in appdb, so I simplified the script here to reflect that.
Testers are welcome (just remove your Hearthstone install and run the script via Tools > Run a local script). Thanks to everyone maintaining the script so far. Differences@@ -1,31 +1,25 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2014-08-28 20:30 -# Wine version used : 1.6.2, 1.7.15 +# Last revision : 2016-02-16 20:39 +# Wine version used : 1.6.2, 1.7.15, 1.8.1 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux -# Author : kweepeer2, m1kc +# Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" - + 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 1950 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.55" - -# Might not be needed but seen several reports that said it was needed for them to install B.net client -POL_Call POL_Install_flashplayer -# http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 -POL_Wine_OverrideDLL "native,builtin" "dbghelp" -POL_Wine_OverrideDLL "native,builtin" "msvcp100" +POL_Wine_PrefixCreate "1.8.1" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone @@ -63,18 +57,18 @@ *) exit 1;; esac - + POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete - + POL_SetupWindow_VMS "64" POL_Wine_reboot - + POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close - + exit 0 New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2016-02-16 20:39 # Wine version used : 1.6.2, 1.7.15, 1.8.1 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc (+ contributions by many others, thanks!) # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.8.1" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesThursday 24 March 2016 at 19:59
Thursday 14 April 2016 at 1:07
Tuesday 24 May 2016 at 21:44
Saturday 24 September 2016 at 13:29
|
raphamaster | Tuesday 9 February 2016 at 23:58 |
raphamaster
|
MessageThe flash player is needed to install battle net, and the link provided by the code is broken (winehq website issue), anyone got a fix, or another way to install flash there? RepliesWednesday 10 February 2016 at 8:08
Wednesday 10 February 2016 at 19:03
Wednesday 10 February 2016 at 19:03
Wednesday 10 February 2016 at 19:04
Wednesday 10 February 2016 at 19:07
Wednesday 10 February 2016 at 19:15
Monday 15 February 2016 at 20:45
|
7z4r | Saturday 16 January 2016 at 15:23 |
7z4r
|
Messagenvm - i managed to get it to work! :D i installed proprietary drivers AMD fglrx and in options i selected screan tear fix. after that i could select region with little effort like Youjin said... game works like a charm - thank you very much for this script! cheers Replies |
7z4r | Friday 15 January 2016 at 21:00 |
7z4r
|
MessageThanks for your time making this script. However I have the same problem like JonnyJungle few comments below... Just installed fresh ubuntustudio 15.10 x64 and script seems to be working fine but i get stuck at login section since it's impossible to select region and you can't log in without selecting it! Youjin said: "It's just a visual bug. Move your cursor as if it was correctly working" Thanks for your reply but i really don't understand what you meant by that? I can move cursor and pretend it's working all day but I can't select any region. And i specifically need EU region since all my cards are there... Replies |
4402927 | Thursday 31 December 2015 at 15:16 |
4402927
|
MessageReplies |
kholyphoenix1 | Wednesday 30 December 2015 at 15:05 |
kholyphoenix1
|
MessagePefect! Replies |
petch | Friday 4 December 2015 at 23:50 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_SetID Add POL_Debug_Init Differences@@ -14,6 +14,9 @@ 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 1950 +POL_Debug_Init + POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.55" New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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 1950 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.55" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "native,builtin" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
asdbimbaj | Tuesday 1 December 2015 at 11:06 |
asdbimbaj
|
MessageUbuntu 15.10 Clean install nvidia -355 driver without a problem , works perfectly
Replies |
RobLoach | Monday 30 November 2015 at 1:51 |
RobLoach
|
WarningThis update has not been approved yet by the team. MessageUpdates to 1.7.55, with PulseAudio goodness. Differences@@ -16,7 +16,7 @@ POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.15" +POL_Wine_PrefixCreate "1.7.55" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.55" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "native,builtin" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
JonnyJungle | Saturday 28 November 2015 at 19:38 |
JonnyJungle
|
MessageHello, I have a problem with hearthstone via playonlinux: I get to the point, where I have to log in to my battle.net account, but in that window I cant select a region. Klicking on the globe symbol does not open a menu. I am new to Linux, so maybe a package is missing. Thanks for your answers :) PS: I run Kubuntu 14.04 LTS Greetings RepliesSaturday 28 November 2015 at 21:26
|
kosmik | Thursday 26 November 2015 at 19:07 |
kosmik
|
Message
Replies |
alexajax | Wednesday 11 November 2015 at 19:06 |
alexajax
|
MessagePlease, help me! I installed HS, did ALL this libraries stuff, but can't launch it because it says: "Can't connect to Battle.net" What can i do here? Replies |
Youjin | Tuesday 10 November 2015 at 20:12 |
Youjin
|
WarningThis update has not been approved yet by the team. MessageWine stagging now works with battle.net Performance may be better. (Test needed about the installer and this version of wine) Differences@@ -1,8 +1,8 @@ #!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 -# Wine version used : 1.6.2, 1.7.15 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Wine version used : 1.6.2, 1.7.15, 1.7.54-staging +# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux, Linux Mint 17.2 x64 # Author : kweepeer2, m1kc # Depend : @@ -16,7 +16,7 @@ POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.15" +POL_Wine_PrefixCreate "1.7.54-staging" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15, 1.7.54-staging # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux, Linux Mint 17.2 x64 # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.54-staging" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "native,builtin" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
hadronhearth | Friday 6 November 2015 at 2:43 |
hadronhearth
|
MessageI am having trouble getting this working as a novice/intermediate linux user. When it launches, I see the Battle.net bar appear on the taskbar, and the icon in the tray, but the Battle.net launcher window never appears. I tried the usual DLL overrides. and switching from wine 1.7 to 1.6.2 I seem to get it to work by switching my graphics driver from the nvidia-346.96 to the xserver-xorg-video-nouvaeu and rebooting, however in this mode my display (everything, not just the game) seems rather fuzzy, so it's not something I want to keep. Not sure what information is helpful, but I'm running Linux Mint 17.2 (Ubuntu 14.04.02). Any advice is appreciated. Replies |
tatso | Saturday 24 October 2015 at 4:20 |
tatso
|
MessageI had running Hearthstone for the last month and a half without a problem on my Ubuntu 14.04 64-bit; but for the last few days it is just black screen. I can open the battle.net client and click play; but it only gives me a full black screen. I had reinstalled like 5 times by now; and tried many things i saw around the web. Here is the log. I would really appreciate the help. Program Files/Hearthstone/Hearthstone_Data/Mono/etc' I 2015-10-24 02:14:15.512211 [GameSessionList] {} Reporting process: TrackingInfo(uid=hs_beta, type=game, opStatus=On, reqId=0, running=1, oldRunning=0) I 2015-10-24 02:14:15.515959 [InstallManager] {} Setting Process Running: uid=hs_beta binaryType=0 running=true any=true D 2015-10-24 02:14:15.516020 [InstallInfo] {} Operation status changed: opType=Execute oldStatus=Pending newStatus=On agentUid=hs_beta D 2015-10-24 02:14:15.516091 [InstallManager] {} Game is running: hs_beta D 2015-10-24 02:14:15.516159 [ProductState] {} InstallState (hs_beta): gameRunning=1 isGameProcessRunning=1 GameLaunching=0 I 2015-10-24 02:14:21.532595 [GameSessionList] {} Reporting process: TrackingInfo(uid=hs_beta, type=game, opStatus=Off, reqId=0, running=0, oldRunning=1) I 2015-10-24 02:14:21.535061 [InstallManager] {} Setting Process Running: uid=hs_beta binaryType=0 running=false any=false D 2015-10-24 02:14:21.535120 [InstallInfo] {} Operation status changed: opType=Execute oldStatus=On newStatus=Off agentUid=hs_beta D 2015-10-24 02:14:21.535144 [InstallManager] {} Game is no longer running: hs_beta D 2015-10-24 02:14:21.535512 [ProductState] {} InstallState (hs_beta): gameRunning=0 isGameProcessRunning=0 "enUS", "esMX", "esES", "frFR", "itIT", "jaJP", "plPL", "ptBR", "ruRU", "koKR", "zhTW", "zhCN" ], "download_complete" : true, "install_dir" : "C:/Program Files/Hearthstone", "installed" : true, "installed_locales" : [ "enUS" ], "launch_arguments" : [], "local_version" : "3.2.0.10604", "patch_application_complete" : true, "playable" : true, "product" : "hsb", "region" : "eu", "selected_locale" : "enUS", "selected_asset_locale" : "enUS", "supports_multibox" : false, "update_method" : "containerless ngdp", "update_progress" : 1.000000, "last_version_check" : "1445652842502", "version_cooldown" : 49736.000000, "regional_version_info" : { "us" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "eu" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604", "selected" : true }, "kr" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "cn" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" } } } OnComplete: handle - 0x0019fca0, result - 0, running - 5, request - found OnComplete: handle - 0x00193ff8, result - 0, running - 4, request - found OnComplete: handle - 0x001a84a0, result - 0, running - 3, request - found OnComplete: handle - 0x067097d0, result - 0, running - 2, request - found OnComplete: handle - 0x06711fd0, result - 0, running - 1, request - found Request POST /gamesession { "uid" : "hs_beta", "pid" : 50.000000, "binary_type" : "game" } Response 200 (7.6336 ms): { "response_uri" : "/gamesession/hs_beta" } Request GET /gamesession Response 200 (10.6167 ms): { "battle.net" : { "1" : { "request_id" : 42.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } }, "hs_beta" : { "1" : { "request_id" : 50.000000, "pid" : 50.000000, "pid_path" : "", "binary_type" : "game" } } } GameProcessManager - TIMEOUT: process - uid:hs_beta, pid:50, parent pid:0, pid path:. Request GET /gamesession Response 200 (7.9758 ms): { "battle.net" : { "1" : { "request_id" : 42.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } }, "hs_beta" : { "1" : { "request_id" : 50.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } } } Start concurrent operation. OP_VERSION for 'hs_beta' Request POST /version { "uid" : "hs_beta" } Response 200 (21.1934 ms): { "response_uri" : "/version/hs_beta" } Executing operation: delete_folder root="C:\Program Files\Common Files\", relative_paths=Blizzard Entertainment/Hearthstone* Searching for links in "C:\users\ata\Desktop\" that point to deleted files in "C:/Program Files/Common Files/" Searching for links in "C:\users\Public\Desktop\" that point to deleted files in "C:/Program Files/Common Files/" Searching for links in "C:\users\ata\Start Menu\Programs\" that point to deleted files in "C:/Program Files/Common Files/" Searching for links in "C:\users\Public\Start Menu\Programs\" that point to deleted files in "C:/Program Files/Common Files/" Concurrent operation OP_VERSION for 'hs_beta' completed Request GET /version/hs_beta Response 200 (9.3736 ms): { "state" : 1004.000000, "playable" : true } Request GET /game/hs_beta Response 200 (9.2727 ms): { "background_download_available" : false, "background_download_complete" : true, "binaries" : { "game" : { "regex" : "", "relative_path" : "Hearthstone.exe", "relative_path_64" : "", "switcher" : false, "launch_arguments" : [ "-launch" ] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 10604.000000, "display_locales" : [ "deDE", "enGB", "enUS", "esMX", "esES", "frFR", "itIT", "jaJP", "plPL", "ptBR", "ruRU", "koKR", "zhTW", "zhCN" ], "download_complete" : true, "install_dir" : "C:/Program Files/Hearthstone", "installed" : true, "installed_locales" : [ "enUS" ], "launch_arguments" : [], "local_version" : "3.2.D 2015-10-24 02:14:22.555304 [GSAccountProvider] {} Received GameTimeRemainingInfo: (Game: EU-WTCG-61433842) info={ m_minutesRemaining: m_parentalDailyMinutesRemaining: m_par0.10604", "patch_application_complete" : true, "playable" : true, "product" : "hsb", "region" : "eu", "selected_locale" : "enUS", "selected_asset_locale" : "enUS", "supports_multibox" : false, "update_method" : "containerless ngdp", "update_progress" : 1.000000, "last_version_check" : "1445652842502", "version_cooldown" : 40725.000000, "regional_version_info" : { "us" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "eu" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604", "selected" : true }, "kr" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "cn" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" } } } Request GET /game/agent Response 200 (7.2948 ms): { "background_download_available" : false, "background_download_complete" : true, "binaries" : { "game" : { "regex" : "Agent\\.(%d)*\\\\Agent\\.exe", "relative_path" : "Agent.exe", "relative_path_64" : "", "switcher" : true, "launch_arguments" : [] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 4532.000000, "display_locales" : [], "download_complete" : true, "install_dir" : "C:/users/Public/Application Data/Battle.net/Agent", "installed" : true, "installed_locales" : [], "launch_arguments" : [], "local_version" : "2.1.2.4532", "patch_application_complete" : true, "playable" : true, "product" : "agent", "region" : "eu", "selected_locale" : "", "selected_asset_locale" : "", "supports_multibox" : true, "update_method" : "containerless ngdp", "update_progress" : 1.000000, "last_version_check" : "1445652841199", "version_cooldown" : 3756.000000, "regional_version_info" : { "us" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "eu" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532", "selected" : true }, "cn" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "kr" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "tw" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "xx" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" } } } Request GET /game/battle.net Response 200 (9.1982 ms): { "background_download_available" : false, "background_download_complete" : false, "binaries" : { "game" : { "regex" : "Battle\\.net\\.(beta\\.)*\\d+/Battle\\.net\\.exe", "relative_path" : "Battle.net.exe", "relative_path_64" : "", "switcher" : true, "launch_arguments" : [] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 6233.000000, "display_locales" : [], "download_complete" : true, "install_dir" : "C:/Program Files/Battle.net", "installed" : true, "installed_locales" : [ "enUS" ], "launch_arguments" : [], "local_version" : "1.3.3.6233", "patch_application_complete" : true, "playable" : true, "product" : "bna", "region" : "eu", "selected_locale" : "enUS", "selected_asset_locale" : "enUS", "supports_multibox" : true, "update_method" : "client update", "update_progress" : 1.000000, "last_version_check" : "1445652841528", "version_cooldown" : 3148.000000 } Request GET /game/hs_beta Response 200 (8.1147 ms): { "background_download_available" : false, "background_download_complete" : true, "binaries" : { "game" : { "regex" : "", "relative_path" : "Hearthstone.exe", "relative_path_64" : "", "switcher" : false, "launch_arguments" : [ "-launch" ] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 10604.000000, "display_locales" : [ "deDE", "enGB", "enUS", "esMX", "esES", "frFR", "itIT", "jaJP", "plPL", "ptBR", "ruRU", "koKR", "zhTW", "zhCN" ], [10/24/15 05:17:21] - Running wine-1.7.15 Battle.net Launcher.exe (Working directory : /home/ata/.PlayOnLinux/wineprefix/hearthstone/drive_c/Program Files/Battle.net) fixme:heap:HeapSetInformation (nil) 1 (nil) 0 fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:wininet:InternetSetOptionW Option 77 STUB "download_complete" : true, "install_dir" : "C:/Program Files/Hearthstone", "installed" : true, "installed_locales" : [ "enUS" ], "launch_arguments" : [], "local_version" : "3.2.0.10604", "patch_application_complete" : true, "playable" : true, "product" : "hsb", "region" : "eu", "selected_locale" : "enUS", "selected_asset_locale" : "enUS", "supports_multibox" : false, "update_method" : "containerless ngdp", "update_progress" : 1.000000, "last_version_check" : "1445652842502", "version_cooldown" : 0.000000, "regional_version_info" : { "us" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "eu" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604", "selected" : true }, "kr" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" }, "cn" : { "config_key" : "21567095891b32592c0f5a040a4cc3df", "display_version" : "3.2.0.10604" } } } Request GET /game/agent Response 200 (10.0047 ms): { "background_download_available" : false, "background_download_complete" : true, "binaries" : { "game" : { "regex" : "Agent\\.(%d)*\\\\Agent\\.exe", "relative_path" : "Agent.exe", "relative_path_64" : "", "switcher" : true, "launch_arguments" : [] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 4532.000000, "display_locales" : [], "download_complete" : true, "install_dir" : "C:/users/Public/Application Data/Battle.net/Agent", "installed" : true, "installed_locales" : [], "launch_arguments" : [], "local_version" : "2.1.2.4532", "patch_application_complete" : true, "playable" : true, "product" : "agent", "region" : "eu", "selected_locale" : "", "selected_asset_locale" : "", "supports_multibox" : true, "update_method" : "containerless ngdp", "update_progress" : 1.000000, "last_version_check" : "1445652841199", "version_cooldown" : 0.000000, "regional_version_info" : { "us" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "eu" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532", "selected" : true }, "cn" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "kr" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "tw" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" }, "xx" : { "config_key" : "41a9eec9fb2f323284db6fb369c3b015", "display_version" : "2.1.2.4532" } } } Request GET /game/battle.net Response 200 (8.2573 ms): { "background_download_available" : false, "background_download_complete" : false, "binaries" : { "game" : { "regex" : "Battle\\.net\\.(beta\\.)*\\d+/Battle\\.net\\.exe", "relative_path" : "Battle.net.exe", "relative_path_64" : "", "switcher" : true, "launch_arguments" : [] } }, "binary_launch_path" : "", "binary_launch_path64" : "", "current_version" : 6233.000000, "display_locales" : [], "download_complete" : true, "install_dir" : "C:/Program Files/Battle.net", "installed" : true, "installed_locales" : [ "enUS" ], "launch_arguments" : [], "local_version" : "1.3.3.6233", "patch_application_complete" : true, "playable" : true, "product" : "bna", "region" : "eu", "selected_locale" : "enUS", "selected_asset_locale" : "enUS", "supports_multibox" : true, "update_method" : "client update", "update_progress" : 1.000000, "last_version_check" : "1445652841528", "version_cooldown" : 0.000000 } Request GET /agent Response 200 (166.2407 ms): { "pid" : 47.000000, "user_id" : "S-1-5-21-0-0-0-1000", "state" : 1004.000000, "version" : "2.1.2.4532", "region" : "eu", "type" : "retail", "opt_in_feedback" : true, "session" : "7347265500480182628", "authorization" : "10906ABA6215AEBB384444C6EDE17948" } Request POST /agent { "opt_in_feedback" : true } Response 200 (8.3062 ms): {} Request POST /verI 2015-10-24 02:17:22.193516 [Main] {} Logging started for Battle.net build 1.3.3.6233 I 2015-10-24 02:17:22.194199 [Configuration] {} SharedConfigRoot: C:\users\Public\Application Data\Battle.net I 2015-10-24 02:17:22.194352 [Configuration] {} RoamingConfigRoot: C:\users\ata\Application Data\Battle.net I 2015-10-24 02:17:22.194391 [Configuration] {} LocalConfigRoot: C:\users\ata\Local Settings\Application Data\Battle.net D 2015-10-24 02:17:22.194469 [Configuration] {} Searching for config file: C:\Program Files\Battle.net\Battle.net.6233\Battle.net.config D 2015-10-24 02:17:22.194560 [Configuration] {} Searching for config file: C:\Program Files\Battle.net\Battle.net.config D 2015-10-24 02:17:22.194934 [Configuration] {} User Configuration File: C:\users\ata\Application Data\Battle.net\Battle.net.config I 2015-10-24 02:17:22.196448 [Main] {} Command line arguments: {} I 2015-10-24 02:17:22.199687 [IPC] {} Opening IPC shared memory. queueName=User:ata:Battle.net App IPC ShMem mode=client I 2015-10-24 02:17:22.200056 [Main] {} Leaving because another instance of battle.net is running D 2015-10-24 02:17:22.200100 [Main] {} Shutting down Backend D 2015-10-24 02:17:22.200143 [Main] {} Closing IPC Service D 2015-10-24 02:17:22.200183 [IPC] {} IPCService is shutting down D 2015-10-24 02:17:22.200334 [Main] {} Shutting down callback queue I 2015-10-24 02:17:22.206073 [IPC] {} Dispatching Command: focus D 2015-10-24 02:17:27.976028 [GameController] {} Shutting down GameController D 2015-10-24 02:17:27.976230 [ProductState] {} Game product state destroyed: uid=agent D 2015-10-24 02:17:27.976289 [ProductState] {} Game product state destroyed: uid= D 2015-10-24 02:17:27.976345 [ProductState] {} Game product state destroyed: uid=d3cn D 2015-10-24 02:17:27.976455 [ProductState] {} Game product state destroyed: uid=wow D 2015-10-24 02:17:27.976562 [ProductState] {} Game product state destroyed: uid=diablo3 D 2015-10-24 02:17:27.976673 [ProductState] {} Game product state destroyed: uid=s2 D 2015-10-24 02:17:27.976779 [ProductState] {} Game product state destroyed: uid=hs_beta D 2015-10-24 02:17:27.976896 [ProductState] {} Game product state destroyed: uid=heroes D 2015-10-24 02:17:27.977003 [ProductState] {} Game product state destroyed: uid=prometheus D 2015-10-24 02:17:28.158600 [Main] {} Shutting down Backend D 2015-10-24 02:17:28.158675 [Main] {} Closing IPC Service D 2015-10-24 02:17:28.158713 [IPC] {} IPCService is shutting down D 2015-10-24 02:17:28.159081 [Main] {} Shutting down account manager I 2015-10-24 02:17:28.159178 [GSStateTracker] {} State changed to: Incomplete I 2015-10-24 02:17:28.159206 [AccountManager] {} Account manager state has changed to: Incomplete I 2015-10-24 02:17:28.159247 [GameProvider] {} Game provider is no longer initialized and is now reset I 2015-10-24 02:17:28.159334 [GSAccountProvider] {} Account provider destroyed D 2015-10-24 02:17:28.159382 [Main] {} Shutting down CacheManager D 2015-10-24 02:17:28.159408 [Main] {} Shutting down analytics processor I 2015-10-24 02:17:28.189436 [http] {} In-progress Request Canceled: http://www.google-analytics.com/collect I 2015-10-24 02:17:32.945080 [http] {} In-progress Request Canceled: http://www.google-analytics.com/collect D 2015-10-24 02:17:32.945915 [Main] {} Shutting down worker pool D 2015-10-24 02:17:32.948517 [Main] {} Shutting down backend processor D 2015-10-24 02:17:32.949036 [Main] {} Shutting down data cache D 2015-10-24 02:17:32.949284 [Main] {} Shutting down catalog manager D 2015-10-24 02:17:32.949549 [Main] {} Shutting down environment manager D 2015-10-24 02:17:32.949716 [Main] {} Shutting down remote content manager D 2015-10-24 02:17:32.949801 [Main] {} Shutting down analytics session D 2015-10-24 02:17:32.949878 [Main] {} Shutting down agent manager D 2015-10-24 02:17:32.964038 [Agent] {} Communicated shutdown to Agent D 2015-10-24 02:17:32.964139 [Main] {} Shutting down game provider D 2015-10-24 02:17:32.964176 [Main] {} Shutting down battle.net engine I 2015-10-24 02:17:32.964224 [BattlenetAPI] {} Forcibly disconnecting from Battle.net E 2015-10-24 02:17:33.014431 [BattlenetAPI] {} Disconnected from Battle.net: err= (3005) connectionId=1 D 2015-10-24 02:17:33.224020 [Main] {} Shutting down callback queue D 2015-10-24 02:17:33.225191 [CacheManager] {} Stats.TasksQueued: 115 D 2015-10-24 02:17:33.225288 [CacheManager] {} Stats.TasksCompleted: 115 D 2015-10-24 02:17:33.225389 [CacheManager] {} Stats.CacheReads: 8 D 2015-10-24 02:17:33.225478 [CacheManager] {} Stats.FilesReadFromArchive: 118 <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2> </body></html> <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2> </body></html> <html><head><title>Object moved</title></head><body> <h2>Object moved to <a href="http://www.blizzard.com/404">here</a>.</h2> </body></html> sion {"uid":"battle.net"} Response 200 (9.3469 ms): { "response_uri" : "/version/battle.net" } Post Request to http://eu.patch.battle.net:1119/patch: <version program="Bna"><record program="Bna" component="Win" version="0"/><record program="Bna" component="blob" version="1"/></version> Queue Request for http://eu.patch.battle.net:1119/patch : handle - 0x00193ff8, index - 27, running - 0 Request GET /version/battle.net Response 200 (6.0380 ms): { "state" : 1007.000000, "playable" : true } Launched C:/Program Files/Battle.net/Battle.net.exe as PID: 22 with --switcherall ********************************************** Request POST /gamesession { "uid" : "battle.net" } Response 200 (111.1055 ms): { "response_uri" : "/gamesession/battle.net" } Request DELETE /agent Response 200 (7.2352 ms): {} Request GET /gamesession Response 200 (11.5551 ms): { "battle.net" : { "1" : { "request_id" : 42.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" }, "2" : { "request_id" : 22.000000, "pid" : 0.000000, "pid_path" : "", "binary_type" : "game" } }, "hs_beta" : { "1" : { "request_id" : 50.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } } } GameProcessManager - TIMEOUT: process - uid:battle.net, pid:0, parent pid:22, pid path:. Request GET /gamesession Response 200 (13.5854 ms): { "battle.net" : { "1" : { "request_id" : 42.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" }, "2" : { "request_id" : 22.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } }, "hs_beta" : { "1" : { "request_id" : 50.000000, "pid" : -1.000000, "pid_path" : "", "binary_type" : "game" } } } OnComplete: handle - 0x00193ff8, result - 0, running - 1, request - found Post Response: <patch> <record program="Bna" component="Win"> http://dist.blizzard.com.edgesuite.net/bna/bna6233/bna-6216-6233-win.mpq.torrent.5A9BC26BD280644EC8B05E6A43251CB5;http://dist.blizzard.com.edgesuite.net/bna/bna6233/bna-6233-win.mpq.torrent.8845AB45F7</record> <record program="Bna" component="blob"> http://dist.blizzard.com.edgesuite.net/tools-pod/Battle.net/Blob.Battle.net;123B1C89A105C89BC22C7C3E4096AAFB;C2168BBB657CBA25473121362A6038A5;0 </record> </patch> Start concurrent operation. OP_VERSION for 'battle.net' Executing operation: program_associations executablePath="C:\Program Files\Battle.net\Battle.net.exe" executableIconPath="C:\Program Files\Battle.net\Battle.net.exe" executableIconIndex=0 gameRegistry It combines all of our previous launchers into a single, integrated solution. Battle.net keeps all of your games up-to-date, and only requires you to sign in once to play any of them. With Battle.net, it's easier to stay in contact with your Battle.net friends than ever before." Uri Scheme 0: name="starcraft" iconPath="C:\Program Files\Battle.net\Battle.net.exe" iconIndex=0 description="URL:StarCraft II Protocol" command='"C:\Program Files\Battle.net\Battle.net.exe" "%1"' Uri Scheme 1: name="heroes" iconPath="C:\Program Files\Battle.net\Battle.net.exe" iconIndex=0 description="URL:Heroes of the Storm Protocol" command='"C:\Program Files\Battle.net\Battle.net.exe" "%1"'Uri Scheme 2: name="battlenet" iconPath="C:\Program Files\Battle.net\Battle.net.exe" iconIndex=0 description="URL:Blizzard Battle.net Protocol" command='"C:\Program Files\Battle.net\Battle.net.exe" "%Failed to create registry key - HKEY_LOCAL_MACHINE\Software\RegisteredApplications Concurrent operation OP_VERSION for 'battle.net' completed Request DELETE /agent Response 200 (12.5343 ms): {} No Connected Clients detected: Initiating Shutdown Timer No Connected Clients detected: Shutting Down Agent is shutting down Queue Request for http://iir.blizzard.com:3724/submit/BNET_APP : handle - 0x066f1d70, index - 28, running - 0 Start bnl::Cleanup Finished bnl::Cleanup OnComplete: handle - 0x066f1d70, result - 0, running - 1, request - found Cleanup: total requests process - 29 Connection statistics (times in milliseconds) latency = 0.000 ms bandwidth = 0.000 MB/sec downloadUrlCount: 0 downloadUrlCallTime: 0.000 (0.000000) downloadUrlElapsedTime: 0.000 (0.000000) connectionsCreated: 0 connectionsClosed: 0 requestsCreated: 0 requestsClosed: 0 parseUrlTime: 0.000 (0.000000) createRequestTime: 0.000 (0.000000) createHeadersTime: 0.000 (0.000000) sendRequestTime: 0.000 (0.000000) httpSendRequestTime: 0.000 (0.000000) httpResponseTime: 0.000 (0.000000) readissued: 0 readsync: 0 readasync: 0 readfail: 0 readzero: 0 readnonzero: 0 readfileTime: 0.000 (0.000000) readfileWaitTime: 0.000 (0.000000) readfileResponseTime: 0.000 (0.000000) readCallbackTime: 0.000 (0.000000) readBytes: 0
RepliesWednesday 4 November 2015 at 17:24
Friday 4 December 2015 at 21:24
Wednesday 9 December 2015 at 2:24
Sunday 3 January 2016 at 0:43
Wednesday 6 January 2016 at 15:42
Thursday 24 March 2016 at 17:49
Thursday 24 March 2016 at 18:11
|
bsnoguera | Thursday 15 October 2015 at 5:00 |
bsnoguera
|
MessageHello, guys. I'm not being able to play hearthstone using Play On Linux; the installer runs well, everything seems fine; Battle.net is installed and Hearthstone too, without a problem. But when I click play, a black empty screen shows up in the window which is supposed to be the game's. It's completely black, no sounds. The battle.net launcher stays there, but the game simply does not start. Here is a doc with the debug file: https://docs.google.com/document/d/1X_fzUPHKibLN8xgzh8VCETZD4PbtSyydTzKjop26-K4/edit?usp=sharing Please, keep in mind I'm new to linux, and don't know yet how to do most things. My Linux version, by the way, is Mint 17.2 cinnamon, 64-bit. Thank you all!
RepliesWednesday 4 November 2015 at 17:25
|
marko47 | Saturday 10 October 2015 at 3:26 |
marko47
|
MessagePlaying for a week, used default POL installer script works fine, i had some problems with sound, itwas playing too fast until i restarted the game, found solution on forums,just typed in terminal pulseaudio -k now everything works good. RepliesSaturday 10 October 2015 at 3:31
|
petch | Friday 2 October 2015 at 6:27 |
petch
|
WarningThis update has not been approved yet by the team. MessageSet dbghelp override to "native, buildin" Differences@@ -21,7 +21,7 @@ # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 -POL_Wine_OverrideDLL "disabled" "dbghelp" +POL_Wine_OverrideDLL "native,builtin" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "native,builtin" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesSunday 4 October 2015 at 19:49
|
Kurolox | Thursday 1 October 2015 at 15:49 |
Kurolox
|
MessageCan't get it work in my netbook. It installs well, but when I try to launch it it shows the battle.net updater for one second and then dissapears.
Log: http://pastebin.com/vSFz6Mtp
Any idea of what could be causing this? I already tried changing wine versions, but it happens in every one of the Replies |
postaljester | Thursday 1 October 2015 at 3:33 |
postaljester
|
Messagewas working for me until the latest patch scrambled it. global_error_asset_load_fail error happens at launch for me. I have googled it and it seems to be an older problem but the old work around didnt work for me.
RepliesThursday 1 October 2015 at 3:39
Friday 2 October 2015 at 6:43
|
syjeo | Tuesday 15 September 2015 at 10:09 |
syjeo
|
MessageHello, This install work fine but I have this error message when i first click "play" "Battle.net requires the Windows Secondary Logon service to be enabled. Errors: BLZAPPBTS0000K, BLZBNTBTS0000K, BLZAPPAGT02601, BLZBNTAGT02601, BLZBNTAGT00000A29" I found a temporary workaround : clicking a second time will launch the game. I will notice the battle.net support team.
Replies |
roygbiv | Tuesday 1 September 2015 at 11:43 |
roygbiv
|
MessageI recently switched machine from Ubuntu 15.04 to GoBang which is basically Ubuntu 14.04 light. Graphic card is Nvidia Geforece 740M. There seem to be several problems, I am not sure if something changed on the installation script or it is a matter of my machine/OS. Everything was working pretty well before, now the game is uncharacteristically laggy and mouse movements are very slow The Battle.net client also is kind of messed up with letters missing (see image) and buttons respond after a couple of clicks.
Replies |
Reaver32 | Tuesday 1 September 2015 at 6:24 |
Reaver32
|
MessageIt works good for me. Only issues I've noticed is that if you have two screens, Hearthstone will only go fullscreen on one of them no matter what you do. Also, if you minimize Hearthstone, you're gonna have to force kill it. Lastly, in order to launch Hearthstone, you need to double click the "Play" button in the Battle.Net client. I thought my Battle.Net client was broken at first until I started clicking everywhere. Make sure you turn the settings to "High" in [Cog Wheel] -> Options -> Graphics in order to lift the 30FPS framerate cap. Replies |
deri82 | Sunday 9 August 2015 at 17:17 |
deri82
|
MessageYou have set VMS value as 64mb. Isnt that the value of GPU memory size? That's really low. Replies |
flubbes | Sunday 9 August 2015 at 14:10 |
flubbes
|
MessageError in POL_Shortcut
Yes I left everything at default RepliesWednesday 19 August 2015 at 19:59
|
petch | Wednesday 5 August 2015 at 22:54 |
petch
|
WarningThis update has not been approved yet by the team. MessageUse POL_Wine_WaitExit instead of POL_Wine_WaitBefore since the installer seems non-blocking (according to reports) Differences@@ -64,8 +64,8 @@ POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" -POL_Wine_WaitBefore "$TITLE" --allow-kill POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit "$TITLE" --allow-kill POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
amp | Wednesday 5 August 2015 at 19:55 |
amp
|
MessageThe installer doesn't seem to work any more because the script thinks the installer exits before it actually does and triggers a reboot. I don't know POL scripting but I think there needs to be a change to this line: POL_Wine_WaitBefore "$TITLE" --allow-kill So that it waits for the entire install process to finish (which is multiple chained processes). Other than this the game does work OK. Replies |
kholyphoenix1 | Thursday 30 July 2015 at 17:36 |
kholyphoenix1
|
MessagePlataform: Linux Fedora 22 --- Without slowing down the speed is normal in the game. RepliesFriday 31 July 2015 at 15:15
|
l3iggs | Tuesday 28 July 2015 at 14:35 |
l3iggs
|
WarningThis update has not been approved yet by the team. MessageThe installation script seems to work fine for me when I run it on a mahine with an Nvidia GPU. Using an ATI or Intel GPU results in the battle.net client window being corrupted and completely unreadable (although if you know where the "Play" button should be, you can click it and the game runs seemingly without issue.
The flashplayer install is not a requirement, it's only needed if you want to watch videos in the battle.net client interface. I suggest you remove it.
Also, I've tested this with wine version 1.7.47 (with Nvidia GPU) and it works fine. Maybe bumping the wine version could solve the ATI and Intel GPU issues I've seen. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 -# Wine version used : 1.6.2, 1.7.15 +# Wine version used : 1.6.2, 1.7.47 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : @@ -16,10 +16,8 @@ POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.15" +POL_Wine_PrefixCreate "1.7.47" -# Might not be needed but seen several reports that said it was needed for them to install B.net client -POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.47 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.47" # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine_WaitBefore "$TITLE" --allow-kill POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
RepairedPanic1 | Sunday 28 June 2015 at 21:55 |
RepairedPanic1
|
MessageI installed Hearthstone through POL with no trouble. The only issue with the game is that sometimes the audio bugs out, but all I have to do is turn the games volume off and on again and it is fixed. I'm fairly sure this is an issue with my computer rather than the game as it is old, slow and overall poor quality. Replies |
Kevin4linux | Friday 26 June 2015 at 16:40 |
Kevin4linux
|
Messagehey, everyone I run into a trouble about image problem. When I open Bttle.net, the screen will crash like below. Could anyone please help me? I am freshmen, so please forget me can't find issue log file for you. :(
https://www.dropbox.com/s/iyttut7r178p5y7/Screenshot%20-%2006262015%20-%2010%3A08%3A33%20AM.png?dl=0 RepliesFriday 26 June 2015 at 16:45
|
Kevin4linux | Friday 26 June 2015 at 16:25 |
Kevin4linux
|
Messagehey, everyone I run into a trouble about image problem. When I open Bttle.net, the screen will crash like below. Could anyone please help me? I am freshmen, so please forget me can't find issue log file for you. :(
Replies |
Iks | Thursday 4 June 2015 at 12:14 |
Iks
|
MessageInstaller works fine. The battle.net desktop application will try to scan for hearthstone and other blizzard games when you start hearthstone. It will not find hearthstone , and now all you got is a black window where the launcher is. log is filled with : fixme:d3d:resource_check_usage Unhandled usage flags 0x8 Launcher seams to be running , just that you cannot see it Ubuntu 14.04 , POL 4.2.8 RepliesThursday 4 June 2015 at 18:03
Monday 15 June 2015 at 12:55
Monday 15 June 2015 at 12:56
|
cramserb | Wednesday 20 May 2015 at 21:07 |
cramserb
|
MessageThe installation seems to run well. It worked, asked for the login credentials for battle.net and connects well, but when arrives to "Scan for games" screen, says that "We could not find any Blizzard games on your system". If I try to find it manually, it shows the OS structure, and as playonlinux is a hidden directory (".PlayOnLinux") is not shown.
RepliesSaturday 27 June 2015 at 19:29
|
le_med_amine | Sunday 10 May 2015 at 16:10 |
le_med_amine
|
Messageit does not work for me . battelnet was installed fine but when i open the launcher i have no clear image : this is what i get Replies |
petch | Friday 24 April 2015 at 18:50 |
petch
|
WarningThis update has not been approved yet by the team. MessageAllow the user to kill the launcher so that the install script can continue Differences@@ -64,9 +64,8 @@ POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" -POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" --allow-kill POL_Wine "$POL_System_TmpDir/${EXE_FILE}" -POL_Wine_WaitExit POL_System_TmpDelete POL_SetupWindow_VMS "64" New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_Wine_WaitBefore "$TITLE" --allow-kill POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
lulavc | Saturday 28 February 2015 at 1:45 |
lulavc
|
MessageUBUNTU 14.04 running fine. Only problem is some missing words on the cards. There is any fix ? RepliesSaturday 28 February 2015 at 2:13
|
paladin_stz | Tuesday 10 February 2015 at 3:02 |
paladin_stz
|
MessageMy problem is after clicking "play" show up a black screen, where nothing happens. I'm on Manjaro Linux KDE 0.8.12 Ascella and I tried installing Hearthstone in several different ways so far. Until you try to install with PlayOnLinux but the result was identic. I tried to install with libraries on wine 1.7.15 by PlayOnLinux: -wininet
RepliesMonday 27 April 2015 at 20:12
Sunday 6 September 2015 at 10:24
|
RobLoach | Friday 6 February 2015 at 16:54 |
RobLoach
|
MessageHearthstone Icon for the Shortcut: https://www.dropbox.com/s/ccltbme0z6tr4ds/hearthstone.png?dl=0 Would this need to be hosted on PlayOnLinux? There seems to be no icon built in the Program Files directories. RepliesSaturday 7 February 2015 at 15:19
|
weesnich | Monday 26 January 2015 at 5:09 |
weesnich
|
MessageHi, In installed the game through playonlinux and directly tested it while the installation was not completed and everything worked fine. I then closed battle.net, an error popped up (Sorry did not copy it yet) and the game was not added to the library. Reinstalling always brings the same error. To play the game I can now repeat the installation but only have to wait until battle.net starts and the game is already isntalled there. With my regular wine I don't get an internet connection. What can I do to just run battle.net from playonlinux?
Thanks! RepliesMonday 26 January 2015 at 5:18
|
daveood | Tuesday 20 January 2015 at 20:02 |
daveood
|
MessageHello, i have a problem with installation of Hearthstone. daveood@daveood-ThinkPad-R60e-R60i:~$ cat /etc/issue exactly Lubuntu distro version of POL 4.2.5 i implemented LIBGL_ALWAYS_SOFTWARE=1 to POL Battle.net client is installed well, but when i login i get blizz error : Failed to vreate graphics context. Restart of Bnet ofc doesnt work. I dont meet sys. req., but when i had win xp on this machine, HS worked.. fine.. can you help me to fix my issue? Im not really experienced with linux, so please talk to me like to idiot ;) and im sorry for my english. Thank you for all responds. Daveood Replies |
LloydKM | Sunday 11 January 2015 at 22:23 |
LloydKM
|
MessageIt worked on my Notebook with Ubuntu 14.04 LTS I just had one problem. Although the game and battle.net installed (and the game worked immediatly), Play On Linux didn't add the game to the library. RepliesTuesday 20 January 2015 at 3:35
Tuesday 20 January 2015 at 4:23
|
LowMemory | Saturday 10 January 2015 at 18:27 |
LowMemory
|
MessageJust to tell my feedback: I can play game online without problem. Tiny things that can improve player's experience though: - I need to clic many times on « Play » button before it launches (3 times as I remember) - windowed mode does not work (only FullScreen): it leads to gamecrash. - in FullScreen mode losing focus makes game go to a very little square top left of screen and impossible to get back and play (I force myself not to make anything else, even when waiting for a match to be found).
Ubuntu 12.04 LTS with latest PoL version from dedicated repository.
Replies |
telzum | Thursday 25 December 2014 at 12:11 |
telzum
|
MessageHello, im trying to install hearthstone on Ubuntu 14.04 on a HP Chromebook 14. Half way done while updating the agent the installation errors out with the error code BLZBNTBTS0000005C. Is there anyway to fix this? :-/ Replies |
Fapi | Saturday 13 December 2014 at 22:17 |
Fapi
|
MessageHi, I have a different issue with Heartstone. The game works, I can play full games, and at some point the game freeze, the sound lag a lot and I have to reboot my computer manually. In the logs of Playonlinux I can read this line reapeated a lot of times : ALSA lib pcm.c:7843:(snd_pcm_recover) underrun occurred So I think it's a problem with the sound and Alsa. Can I edit something to avoid this problem ? Replies |
bast | Wednesday 10 December 2014 at 16:48 |
bast
|
MessageHearthstone graphic issue after last update. It seems to be an AMD issue, please report if you got the same problem with NVIDIA. After last update or if changing any video option, hearthstone crash on start-up with : with the message "Oops! The game crashed. The crash report folder named ..." The work-around is to go to your /home/YOUR_USER/.PlayOnLinux/wineprefix/YOUR_WINE_DRIVE/drive_c/users/YOUR_USER/Local Settings/Application Data/Blizzard/Hearthstone/options.txt file. One way is to just delete the file & relaunch hearthstone (but it seems to need a computer restart in rare cases). Then put the file on read-only once hearthstone recreates it to permantly resolve the issue. The other way is to have "graphicsquality=1" if the line is there AND not having any graphicsheight= and graphicswidth= lines or otherwise it crashes. Try to put the file on read-only to not have too much troubles in the future until an update that resolves the issue. I managed to get hearthstone on windowed mode this way, but i cannot resize it or it crash. Replies |
karakuroness | Wednesday 10 December 2014 at 13:42 |
karakuroness
|
MessageNew issue with Hearthstone http://fpdownload.macromedia.com/get/flashplayer/pdc/15.0.0.223 install_flash_player.exe I visited the link and, surprise, 404 Not Found. RepliesWednesday 10 December 2014 at 16:38
Thursday 11 December 2014 at 1:53
Thursday 11 December 2014 at 3:33
|
ttblue | Friday 5 December 2014 at 20:51 |
ttblue
|
MessageHearthstone has been great so far through PlayonLinux. But I have a couple of issues with it. One being something which has persisted for a couple of months and the other is something which turned up right after the latest patch.
Old issue: My battlenet screen where I click "play" has had this weird visual bug for a while. Reinstalling doesn't quite fix it. But the buttons are still in the right places so I can still blindly click in approximate places to start the game. The game itself is fine.
New issue: While playing the game, if I leave the screen and open another window, the game has another visual bug that makes it unplayable. The whole screen hangs, while the music and the game continues playing behind. I just noticed that the entire game is actually still displaying in a tiny window of around 20px by 20px at the top-left corner of the screen.
Please let me know if there's any way to fix these bugs! (Don't make me go back to windows... :( )
RepliesFriday 5 December 2014 at 20:53
Friday 5 December 2014 at 20:59
Monday 8 December 2014 at 8:20
Monday 8 December 2014 at 11:47
Wednesday 17 December 2014 at 18:59
Wednesday 17 December 2014 at 19:00
Thursday 18 December 2014 at 10:12
Thursday 18 December 2014 at 10:13
Monday 29 December 2014 at 9:19
Sunday 4 January 2015 at 0:34
Monday 2 March 2015 at 1:05
Tuesday 26 May 2015 at 22:25
Tuesday 26 May 2015 at 22:26
|
andrepd | Friday 5 December 2014 at 12:44 |
andrepd
|
MessageThis script has worked flawlessly so far, but after this update I am unable to start the game, as it crashes on startup with the message "Oops! The game crashed. The crash report folder named "..." next to the game executable. It would be great if you sent it to the devs" The contents of the files in that folder are here: http://pastebin.com/4C3vyBDb , http://pastebin.com/FM0RDBQ1 , http://pastebin.com/en5BAL6A . RepliesWednesday 10 December 2014 at 16:42
|
matiej | Tuesday 25 November 2014 at 11:48 |
matiej
|
Message
I start PlayOnLinux, click the "instal" button and procede with everything until... It get's stuck here. I'm complete noob with Linux and it's first game I tried to instal with PlayOnLinux, so can't really find solution on my own, any help? RepliesMonday 15 December 2014 at 17:50
|
andrepd | Sunday 16 November 2014 at 15:39 |
andrepd
|
MessageDuring install it complains that the local and server copies of flash have different checksums, then I got this message Error in POL_Wine Wine seems to have crashed If your program is running, just ignore this message All goes fine until the big Battle.net window opens after login. The window is white, but if I try to close it it asks to be minimized to system tray, so I would guess it is still working on downloading Hearthstone even though it has a white screen. The Program Files/Hearthstone folder on the PoL drive is 1.4Gb in size. I'll wait about one hour and then try and see if I can run the game after. RepliesSunday 16 November 2014 at 18:43
Sunday 4 January 2015 at 0:35
|
z3Kr0w | Monday 10 November 2014 at 5:48 |
z3Kr0w
|
MessageRun flawlessly with PlayOnLinux pluggin "Script Creator" on Ubuntu 14.10 64 bits. Intel® Core™ i7 CPU Q 740 @ 1.73GHz × 8 Replies |
rincondelgabo | Friday 7 November 2014 at 9:21 |
rincondelgabo
|
MessageHi, i'm using Ubuntu 14.04 and Playonlinux 4.2.5 from the official repositories from this web. Battle.net and Heartstone install correctly, but when i launch Hearthstone for first time, the Battle.net launcher looks like a mirror, all the image is upside down and i can't select the play option. It happens on Ubuntu 12.04 and Mint 17 and 13. And with Playonlinux 4.0.5 as well. The script works awesome until the las few months. Somebody knows if there is a patch on way or a workaround for this bug? I hope somebody can help me, i think more people is having this throuble. Thanks! RepliesFriday 7 November 2014 at 13:34
Monday 10 November 2014 at 7:35
Monday 10 November 2014 at 7:40
Sunday 4 January 2015 at 0:35
|
shikaruko | Monday 27 October 2014 at 22:28 |
shikaruko
|
MessageStrange blackscreen on Mint 17 for battlenet RepliesSunday 4 January 2015 at 0:36
Tuesday 24 March 2015 at 21:51
|
bhouba | Monday 27 October 2014 at 16:27 |
bhouba
|
Messageok like a charm on kubuntu 14.04 64 bits . Thanks a lot ! Replies |
stylou | Monday 20 October 2014 at 13:10 |
stylou
|
MessageInstallation et utilisation OK sous ubuntu 14.04 Replies |
cgarlock | Thursday 2 October 2014 at 21:57 |
cgarlock
|
MessageThis was working fine, but after yesterday (Oct 1 2014) the battle.net launcher comes up and all I see is a white box under the 'battle.net' title bar. RepliesFriday 3 October 2014 at 10:46
Friday 3 October 2014 at 10:54
Sunday 4 January 2015 at 0:36
|
HWHank | Friday 19 September 2014 at 12:09 |
HWHank
|
MessageAfter it's trying to install Flashplayer, I get the following error message: Error in POL_Wine If your program is running, just ignore this message That also happens when I install it manually. Hearthstone installs correctly, but I can't open it! Replies |
m1kc | Friday 29 August 2014 at 16:50 |
m1kc
|
WarningThis update has not been approved yet by the team. MessageThe same, but language names are now written using Latin characters. Differences@@ -1,14 +1,14 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2014-07-30 19:54 +# Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie -# Author : kweepeer2 -# Depend : +# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Author : kweepeer2, m1kc +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" @@ -23,11 +23,11 @@ # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" - + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ - "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español(EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" + "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; @@ -39,23 +39,23 @@ EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; - "Español(EU)") + "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; - "???????") + "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; - "???") + "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; - "????") + "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; - "????") + "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; @@ -66,6 +66,7 @@ POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Wine_WaitExit POL_System_TmpDelete POL_SetupWindow_VMS "64" @@ -74,4 +75,4 @@ POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|Russian|Italiano|Polski|Korean|Chinese (Taiwan)|Chinese (China)" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "Russian") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "Korean") EXE_FILE="Hearthstone-Setup-koKR.exe";; "Chinese (Taiwan)") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "Chinese (China)") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesThursday 4 September 2014 at 2:24
Thursday 4 September 2014 at 2:25
Thursday 4 September 2014 at 21:59
Friday 5 September 2014 at 3:23
Thursday 18 September 2014 at 20:08
|
m1kc | Friday 29 August 2014 at 16:42 |
m1kc
|
WarningThis update has not been approved yet by the team. MessageSlightly improved the script: fixed the string for "Russian" and added POL_Wine_WaitExit call 'cause POL tried to delete temp folder when installer is still running. The game works fine, with no crashes and acceptable performance. Differences@@ -1,14 +1,14 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2014-07-30 19:54 +# Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 -# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie -# Author : kweepeer2 -# Depend : +# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux +# Author : kweepeer2, m1kc +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" @@ -23,11 +23,11 @@ # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" - + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ - "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español(EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" + "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; @@ -39,13 +39,13 @@ EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; - "Español(EU)") + "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; - "???????") + "???????") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; @@ -66,6 +66,7 @@ POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" +POL_Wine_WaitExit POL_System_TmpDelete POL_SetupWindow_VMS "64" @@ -74,4 +75,4 @@ POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-08-28 20:30 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie, Arch Linux # Author : kweepeer2, m1kc # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español (EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español (EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "???????") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "???") EXE_FILE="Hearthstone-Setup-koKR.exe";; "????") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "????") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_Wine_WaitExit POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 RepliesFriday 29 August 2014 at 16:45
|
kweepeer2 | Wednesday 30 July 2014 at 21:01 |
kweepeer2
|
WarningThis update has not been approved yet by the team. Differences@@ -1,17 +1,14 @@ #!/bin/bash # Date : 2014-02-08 14:54 -# Last revision : 2014-03-29 18:04 +# Last revision : 2014-07-30 19:54 # Wine version used : 1.6.2, 1.7.15 -# Distribution used to test : Ubuntu 13.10 x64 +# Distribution used to test : Ubuntu 13.10 x64, Debian Jessie # Author : kweepeer2 -# Depend : - -# Known Issues : -# - (Wine Bug 33943) Battle.net client dropdown menus won't appear until you hover over them. +# Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Hearthstone" PREFIX="hearthstone" @@ -21,55 +18,60 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" +# Might not be needed but seen several reports that said it was needed for them to install B.net client +POL_Call POL_Install_flashplayer +# http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 +POL_Wine_OverrideDLL "disabled" "dbghelp" +POL_Wine_OverrideDLL "native,builtin" "msvcp100" + # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español(EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" case "$APP_ANSWER" in "English (US)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-enUS.exe";; + EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-esMX.exe";; + EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-ptBR.exe";; + EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-enGB.exe";; + EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-deDE.exe";; + EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español(EU)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-esES.exe";; + EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-ptPT.exe";; + EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-frFR.exe";; + EXE_FILE="Hearthstone-Setup-frFR.exe";; "???????") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-ruRU.exe";; + EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-itIT.exe";; + EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-plPL.exe";; + EXE_FILE="Hearthstone-Setup-plPL.exe";; "???") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-koKR.exe";; + EXE_FILE="Hearthstone-Setup-koKR.exe";; "????") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-zhTW.exe";; + EXE_FILE="Hearthstone-Setup-zhTW.exe";; "????") - DOWNLOAD_LINK="http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/Hearthstone-Setup-zhCN.exe";; + EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_LINK" +POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" -EXE_FILE="${DOWNLOAD_LINK##*/}" # Get everything after last slash. POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot -POL_Shortcut "Battle.net.exe" "$TITLE" "$TITLE.png" "" +POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : 2014-02-08 14:54 # Last revision : 2014-07-30 19:54 # Wine version used : 1.6.2, 1.7.15 # Distribution used to test : Ubuntu 13.10 x64, Debian Jessie # Author : kweepeer2 # Depend : [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Hearthstone" PREFIX="hearthstone" 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" "Blizzard" "http://us.battle.net/hearthstone/en/" "kweepeer2" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.15" # Might not be needed but seen several reports that said it was needed for them to install B.net client POL_Call POL_Install_flashplayer # http://appdb.winehq.org/objectManager.php?sClass=version&iId=29747 POL_Wine_OverrideDLL "disabled" "dbghelp" POL_Wine_OverrideDLL "native,builtin" "msvcp100" # Download & Install the game. # Multiple Language support. See https://eu.battle.net/account/download/?show=hearthstone&style=hearthstone POL_SetupWindow_menu "$(eval_gettext 'What language do you want to install?')" "Language Selection" \ "English (US)|Español (AL)|Português (BR)|English (EU)|Deutsch|Español(EU)|Português (EU)|Français|???????|Italiano|Polski|???|????|????" "|" case "$APP_ANSWER" in "English (US)") EXE_FILE="Hearthstone-Setup-enUS.exe";; "Español (AL)") EXE_FILE="Hearthstone-Setup-esMX.exe";; "Português (BR)") EXE_FILE="Hearthstone-Setup-ptBR.exe";; "English (EU)") EXE_FILE="Hearthstone-Setup-enGB.exe";; "Deutsch") EXE_FILE="Hearthstone-Setup-deDE.exe";; "Español(EU)") EXE_FILE="Hearthstone-Setup-esES.exe";; "Português (EU)") EXE_FILE="Hearthstone-Setup-ptPT.exe";; "Français") EXE_FILE="Hearthstone-Setup-frFR.exe";; "???????") EXE_FILE="Hearthstone-Setup-ruRU.exe";; "Italiano") EXE_FILE="Hearthstone-Setup-itIT.exe";; "Polski") EXE_FILE="Hearthstone-Setup-plPL.exe";; "???") EXE_FILE="Hearthstone-Setup-koKR.exe";; "????") EXE_FILE="Hearthstone-Setup-zhTW.exe";; "????") EXE_FILE="Hearthstone-Setup-zhCN.exe";; *) exit 1;; esac POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://dist.blizzard.com/downloads/hs-installers/a6029a1d625c79252defff3914fb6e67/retail.1/${EXE_FILE}" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$POL_System_TmpDir/${EXE_FILE}" POL_System_TmpDelete POL_SetupWindow_VMS "64" POL_Wine_reboot POL_Shortcut "Battle.net Launcher.exe" "$TITLE" "$TITLE.png" "" POL_SetupWindow_Close exit 0 Replies |
mir | Friday 18 July 2014 at 3:52 |
mir
|
MessageKeep getting "battle.net agent went to sleep" when the battle.net agent starts. Blizzard support said to try removing the agent.db file, which I did, but still no luck. RepliesThursday 4 September 2014 at 19:40
|
Trynight | Sunday 13 July 2014 at 14:53 |
Trynight
|
MessageWorks very well! -wininet -atl100 -atl90 -d3dx9_36 -d3dx9_43 -msvcr100 RepliesThursday 18 September 2014 at 19:28
|
gnegnelino | Tuesday 24 June 2014 at 16:32 |
gnegnelino
|
MessageProcessor: 4x Intel Core Quad Q9400 2.66GHz Memory: 4049MB OS: Ubuntu 12.04.4 LTS OpenGL: GeForce 9800GT
Installation Ok When Hearthstone start, it crash in charging window. Replies |
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