Hearthstone
Informatie
Creator | Bericht |
---|---|
kweepeer2
![]()
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks56 46 OmschrijvingHearthstone is a fast-paced strategic card-game from Blizzard. Free-to-play. Broncode#!/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 | Bericht |
kmelia | Woensdag 24 Februari 2021 om 18:24 |
kmelia
![]()
|
BerichtAvec 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 AntwoordenAangepast door kmelia |
Dick Tracy | Maandag 28 December 2020 om 23:12 |
Dick Tracy
![]()
|
BerichtBlizzard 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. Antwoorden |
Dadu042 | Zondag 1 November 2020 om 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 Antwoorden |
Dadu042 | Zondag 1 November 2020 om 17:04 |
Dadu042
![]()
|
WarningThis update has not been approved yet by the team. BerichtWine 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 Antwoorden |
lem0nade | Zondag 1 November 2020 om 15:25 |
lem0nade
![]()
|
WarningThis update has not been approved yet by the team. BerichtI 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 AntwoordenZondag 1 November 2020 om 17:03
|
Dadu042 | Woensdag 13 November 2019 om 15:51 |
Dadu042
![]()
|
WarningThis update has not been approved yet by the team. BerichtSome 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 AntwoordenAangepast door Dadu042 |
Dadu042 | Zaterdag 25 Mei 2019 om 0:58 |
Dadu042
![]()
|
WarningThis update has not been approved yet by the team. BerichtChanges 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 AntwoordenAangepast door Dadu042 |
iArska | Zondag 28 Januari 2018 om 0:39 |
iArska
![]()
|
WarningThis update has not been approved yet by the team. BerichtNote 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 Antwoorden |
pashr | Zondag 24 September 2017 om 15:44 |
pashr
![]()
|
BerichtHi 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? AntwoordenMaandag 25 September 2017 om 12:05
|
Oria | Donderdag 21 September 2017 om 23:18 |
Oria
![]()
|
BerichtHello, 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! AntwoordenVrijdag 22 September 2017 om 1:12
|
hex0910 | Maandag 18 September 2017 om 21:55 |
hex0910
![]()
|
WarningThis update has not been approved yet by the team. BerichtOkay 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 AntwoordenMaandag 18 September 2017 om 22:17
Maandag 25 September 2017 om 7:24
Maandag 25 September 2017 om 7:57
Zaterdag 9 December 2017 om 14:01
|
kmelia | Woensdag 6 September 2017 om 17:01 |
kmelia
![]()
|
BerichtI have created a new application https://www.playonlinux.com/en/app-3242-HearthStone_Blizzard_Application.html to get the script up to date. Antwoorden |
sorawotobu | Zaterdag 2 September 2017 om 21:01 |
sorawotobu
![]()
|
BerichtI 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. AntwoordenZondag 3 September 2017 om 16:23
Maandag 4 September 2017 om 2:59
|
Doc.C | Woensdag 23 Augustus 2017 om 8:33 |
Doc.C
![]()
|
BerichtI 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. AntwoordenWoensdag 23 Augustus 2017 om 23:03
Donderdag 24 Augustus 2017 om 11:40
Zondag 3 September 2017 om 13:06
Maandag 4 September 2017 om 18:53
Woensdag 6 September 2017 om 0:07
Woensdag 6 September 2017 om 16:29
Woensdag 6 September 2017 om 20:11
|
tanaydin | Vrijdag 18 Augustus 2017 om 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 AntwoordenZaterdag 19 Augustus 2017 om 9:38
|
tanaydin | Donderdag 17 Augustus 2017 om 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 Antwoorden |
MaReeo | Donderdag 17 Augustus 2017 om 12:25 |
MaReeo
![]()
|
BerichtHello! AntwoordenDonderdag 17 Augustus 2017 om 12:39
|
Arizs | Woensdag 9 Augustus 2017 om 8:36 |
Arizs
![]()
|
BerichtHi, 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 AntwoordenWoensdag 9 Augustus 2017 om 8:38
|
Picon | Vrijdag 21 Juli 2017 om 13:39 |
Picon
![]()
|
BerichtHello, 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:
Antwoorden |
pashr | Vrijdag 14 Juli 2017 om 11:36 |
pashr
![]()
|
Berichtsince 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
Antwoorden |
pashr | Donderdag 22 Juni\ 2017 om 13:26 |
pashr
![]()
|
BerichtI 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? AntwoordenZaterdag 1 Juli 2017 om 18:45
|
dlee | Vrijdag 16 Juni\ 2017 om 5:09 |
dlee
![]()
|
BerichtI 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
<>AntwoordenAangepast door Dadu042 |
kmelia | Woensdag 14 Juni\ 2017 om 12:41 |
kmelia
![]()
|
WarningThis update has not been approved yet by the team. BerichtList 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 AntwoordenZaterdag 1 Juli 2017 om 1:01
Zaterdag 1 Juli 2017 om 18:45
Maandag 3 Juli 2017 om 9:04
Vrijdag 14 Juli 2017 om 12:05
Vrijdag 14 Juli 2017 om 12:45
Dinsdag 18 Juli 2017 om 16:10
Dinsdag 18 Juli 2017 om 16:34
Dinsdag 18 Juli 2017 om 16:35
Woensdag 19 Juli 2017 om 23:56
Woensdag 19 Juli 2017 om 23:58
|
kmelia | Dinsdag 13 Juni\ 2017 om 18:22 |
kmelia
![]()
|
WarningThis update has not been approved yet by the team. BerichtUpdate 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 Antwoorden |
andrikos | Woensdag 7 Juni\ 2017 om 20:34 |
andrikos
![]()
|
BerichtSup 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. :)
Antwoorden |
hex0910 | Woensdag 7 Juni\ 2017 om 14:48 |
hex0910
![]()
|
BerichtTo 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. Antwoorden |
EfficiencyVI | Vrijdag 2 Juni\ 2017 om 3:07 |
EfficiencyVI
![]()
|
BerichtPatch 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? AntwoordenVrijdag 2 Juni\ 2017 om 15:56
Vrijdag 2 Juni\ 2017 om 16:10
Vrijdag 2 Juni\ 2017 om 16:13
Vrijdag 2 Juni\ 2017 om 18:18
Vrijdag 2 Juni\ 2017 om 18:46
Zaterdag 3 Juni\ 2017 om 14:29
Zondag 4 Juni\ 2017 om 15:20
Zondag 4 Juni\ 2017 om 19:57
Woensdag 7 Juni\ 2017 om 20:23
Donderdag 8 Juni\ 2017 om 6:35
|
Berserker | Donderdag 1 Juni\ 2017 om 0:38 |
Berserker
![]()
|
|
Bouzigouloum | Zaterdag 29 April 2017 om 23:42 |
Bouzigouloum
![]()
|
Bericht!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!!! Antwoorden |
DrannorPOL | Dinsdag 18 April 2017 om 19:31 |
DrannorPOL
![]()
|
BerichtAs 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? AntwoordenWoensdag 19 April 2017 om 16:33
Vrijdag 21 April 2017 om 4:13
Vrijdag 21 April 2017 om 23:43
Maandag 24 April 2017 om 0:05
|
Tsumikitty | Dinsdag 4 April 2017 om 20:54 |
Tsumikitty
|
BerichtAfter the update, Hearthstone fails to load. I press "PLAY" and the icon shows up, but then Hearthstone crashes. Anyone have a fix?
Antwoorden |
mardraze | Zondag 2 April 2017 om 15:18 |
mardraze
![]()
|
BerichtOn 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 Antwoorden |
DEVV | Woensdag 29 Maart 2017 om 10:31 |
DEVV
![]()
|
BerichtIf 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)
Antwoorden |
sparxx | Zaterdag 25 Maart 2017 om 3:10 |
sparxx
![]()
|
BerichtI'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 Antwoorden |
Famekki | Donderdag 9 Februari 2017 om 10:20 |
Famekki
![]()
|
BerichtI 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. Antwoorden |
GeorgeCh | Zaterdag 24 December 2016 om 20:22 |
GeorgeCh
![]()
|
BerichtOn 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. Antwoorden |
RandmSpesfic | Dinsdag 29 November 2016 om 1:12 |
RandmSpesfic
![]()
|
BerichtHEARTHSTONE 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 Antwoorden |
RandmSpesfic | Vrijdag 18 November 2016 om 16:16 |
RandmSpesfic
![]()
|
BerichtHow 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 AntwoordenVrijdag 18 November 2016 om 16:18
Vrijdag 18 November 2016 om 16:21
Vrijdag 18 November 2016 om 16:24
|
treePL | Vrijdag 4 November 2016 om 15:07 |
treePL
![]()
|
BerichtCheck Troubleshooting from: Antwoorden |
amplustomp | Woensdag 12 October 2016 om 6:44 |
amplustomp
![]()
|
BerichtAll 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 Antwoorden |
hunebku | Dinsdag 11 October 2016 om 21:37 |
hunebku
![]()
|
BerichtHello Antwoorden |
bbame55 | Maandag 10 October 2016 om 2:52 |
bbame55
![]()
|
BerichtHearthstone 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 Antwoorden |
tfid | Donderdag 8 September 2016 om 22:37 |
tfid
![]()
|
WarningThis update has not been approved yet by the team. BerichtAll 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 AntwoordenDinsdag 13 September 2016 om 19:08
Vrijdag 16 September 2016 om 13:59
Zaterdag 17 September 2016 om 0:01
Maandag 21 November 2016 om 23:14
Maandag 28 November 2016 om 9:27
|
kweepeer2 | Zondag 7 Augustus 2016 om 14:04 |
kweepeer2
![]()
|
WarningThis update has not been approved yet by the team. BerichtOk 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 Antwoorden |
MineElectricity | Donderdag 28 Juli 2016 om 1:40 |
MineElectricity
![]()
|
BerichtI don't know why, but since yesterday it doesn't work, on POL and Crossover, manual install or no ... AntwoordenDonderdag 28 Juli 2016 om 4:53
Donderdag 28 Juli 2016 om 14:21
Donderdag 28 Juli 2016 om 14:24
Donderdag 28 Juli 2016 om 22:55
Zaterdag 30 Juli 2016 om 0:18
Maandag 1 Augustus 2016 om 10:15
Donderdag 4 Augustus 2016 om 3:48
|
drdillio | Woensdag 13 Juli 2016 om 9:09 |
drdillio
![]()
|
BerichtThere 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! AntwoordenVrijdag 15 Juli 2016 om 9:14
|
sbrdste | Maandag 11 Juli 2016 om 12:33 |
sbrdste
![]()
|
BerichtThe 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 Antwoorden |
moss | Donderdag 30 Juni\ 2016 om 0:27 |
moss
![]()
|
BerichtHi, 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? Antwoorden |
RobinHood16 | Zaterdag 11 Juni\ 2016 om 0:39 |
RobinHood16
![]()
|
BerichtOverall, 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"). AntwoordenWoensdag 15 Juni\ 2016 om 6:44
Maandag 29 Augustus 2016 om 17:57
|
kweepeer2 | Dinsdag 24 Mei 2016 om 21:43 |
kweepeer2
![]()
|
WarningThis update has not been approved yet by the team. BerichtNew 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 AntwoordenZondag 29 Mei 2016 om 15:59
|
Sleize | Donderdag 14 April 2016 om 21:32 |
Sleize
![]()
|
BerichtL'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 Antwoorden |
Osveron | Dinsdag 5 April 2016 om 11:34 |
Osveron
![]()
|
BerichtAfter 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? Antwoorden |
bunnyapocalypse | Dinsdag 29 Maart 2016 om 0:24 |
bunnyapocalypse
![]()
|
BerichtAs of today, I can not set my reigon in the initial battle.net login, making it impossible for me to install the program. AntwoordenWoensdag 30 Maart 2016 om 3:23
|
Ludius | Donderdag 24 Maart 2016 om 18:14 |
Ludius
![]()
|
|
amp | Vrijdag 4 Maart 2016 om 3:25 |
amp
![]()
|
BerichtThe 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. Antwoorden |
kweepeer2 | Maandag 22 Februari 2016 om 21:04 |
kweepeer2
![]()
|
WarningThis update has not been approved yet by the team. BerichtThe 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 AntwoordenDonderdag 24 Maart 2016 om 19:59
Donderdag 14 April 2016 om 1:07
Dinsdag 24 Mei 2016 om 21:44
Zaterdag 24 September 2016 om 13:29
|
raphamaster | Dinsdag 9 Februari 2016 om 23:58 |
raphamaster
![]()
|
BerichtThe 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? AntwoordenWoensdag 10 Februari 2016 om 8:08
Woensdag 10 Februari 2016 om 19:03
Woensdag 10 Februari 2016 om 19:03
Woensdag 10 Februari 2016 om 19:04
Woensdag 10 Februari 2016 om 19:07
Woensdag 10 Februari 2016 om 19:15
Maandag 15 Februari 2016 om 20:45
|
7z4r | Zaterdag 16 Januari 2016 om 15:23 |
7z4r
![]()
|
Berichtnvm - 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 Antwoorden |
7z4r | Vrijdag 15 Januari 2016 om 21:00 |
7z4r
![]()
|
BerichtThanks 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... Antwoorden |
4402927 | Donderdag 31 December 2015 om 15:16 |
4402927
![]()
|
BerichtAntwoorden |
kholyphoenix1 | Woensdag 30 December 2015 om 15:05 |
kholyphoenix1
![]()
|
BerichtPefect! Antwoorden |
petch | Vrijdag 4 December 2015 om 23:50 |
petch
![]()
|
WarningThis update has not been approved yet by the team. BerichtAdd 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 Antwoorden |
asdbimbaj | Dinsdag 1 December 2015 om 11:06 |
asdbimbaj
![]()
|
BerichtUbuntu 15.10 Clean install nvidia -355 driver without a problem , works perfectly
Antwoorden |
RobLoach | Maandag 30 November 2015 om 1:51 |
RobLoach
![]()
|
WarningThis update has not been approved yet by the team. BerichtUpdates 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 Antwoorden |
JonnyJungle | Zaterdag 28 November 2015 om 19:38 |
JonnyJungle
![]()
|
BerichtHello, 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 AntwoordenZaterdag 28 November 2015 om 21:26
|
kosmik | Donderdag 26 November 2015 om 19:07 |
kosmik
![]()
|
Bericht
Antwoorden |
alexajax | Woensdag 11 November 2015 om 19:06 |
alexajax
![]()
|
BerichtPlease, 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? Antwoorden |
Youjin | Dinsdag 10 November 2015 om 20:12 |
Youjin
![]()
|
WarningThis update has not been approved yet by the team. BerichtWine 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 Antwoorden |
hadronhearth | Vrijdag 6 November 2015 om 2:43 |
hadronhearth
![]()
|
BerichtI 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. Antwoorden |
tatso | Zaterdag 24 October 2015 om 4:20 |
tatso
![]()
|
BerichtI 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
AntwoordenWoensdag 4 November 2015 om 17:24
Vrijdag 4 December 2015 om 21:24
Woensdag 9 December 2015 om 2:24
Zondag 3 Januari 2016 om 0:43
Woensdag 6 Januari 2016 om 15:42
Donderdag 24 Maart 2016 om 17:49
Donderdag 24 Maart 2016 om 18:11
|
bsnoguera | Donderdag 15 October 2015 om 5:00 |
bsnoguera
![]()
|
BerichtHello, 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!
AntwoordenWoensdag 4 November 2015 om 17:25
|
marko47 | Zaterdag 10 October 2015 om 3:26 |
marko47
![]()
|
BerichtPlaying 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. AntwoordenZaterdag 10 October 2015 om 3:31
|
petch | Vrijdag 2 October 2015 om 6:27 |
petch
![]()
|
WarningThis update has not been approved yet by the team. BerichtSet 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 AntwoordenZondag 4 October 2015 om 19:49
|
Kurolox | Donderdag 1 October 2015 om 15:49 |
Kurolox
![]()
|
BerichtCan'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 Antwoorden |
postaljester | Donderdag 1 October 2015 om 3:33 |
postaljester
![]()
|
Berichtwas 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.
AntwoordenDonderdag 1 October 2015 om 3:39
Vrijdag 2 October 2015 om 6:43
|
syjeo | Dinsdag 15 September 2015 om 10:09 |
syjeo
![]()
|
BerichtHello, 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.
Antwoorden |
roygbiv | Dinsdag 1 September 2015 om 11:43 |
roygbiv
![]()
|
BerichtI 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.
Antwoorden |
Reaver32 | Dinsdag 1 September 2015 om 6:24 |
Reaver32
![]()
|
BerichtIt 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. Antwoorden |
deri82 | Zondag 9 Augustus 2015 om 17:17 |
deri82
![]()
|
BerichtYou have set VMS value as 64mb. Isnt that the value of GPU memory size? That's really low. Antwoorden |
flubbes | Zondag 9 Augustus 2015 om 14:10 |
flubbes
![]()
|
BerichtError in POL_Shortcut
Yes I left everything at default AntwoordenWoensdag 19 Augustus 2015 om 19:59
|
petch | Woensdag 5 Augustus 2015 om 22:54 |
petch
![]()
|
WarningThis update has not been approved yet by the team. BerichtUse 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 Antwoorden |
amp | Woensdag 5 Augustus 2015 om 19:55 |
amp
![]()
|
BerichtThe 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. Antwoorden |
kholyphoenix1 | Donderdag 30 Juli 2015 om 17:36 |
kholyphoenix1
![]()
|
BerichtPlataform: Linux Fedora 22 --- Without slowing down the speed is normal in the game. AntwoordenVrijdag 31 Juli 2015 om 15:15
|
l3iggs | Dinsdag 28 Juli 2015 om 14:35 |
l3iggs
![]()
|
WarningThis update has not been approved yet by the team. BerichtThe 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 Antwoorden |
RepairedPanic1 | Zondag 28 Juni\ 2015 om 21:55 |
RepairedPanic1
![]()
|
BerichtI 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. Antwoorden |
Kevin4linux | Vrijdag 26 Juni\ 2015 om 16:40 |
Kevin4linux
![]()
|
Berichthey, 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 AntwoordenVrijdag 26 Juni\ 2015 om 16:45
|
Kevin4linux | Vrijdag 26 Juni\ 2015 om 16:25 |
Kevin4linux
![]()
|
Berichthey, 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. :(
Antwoorden |
Iks | Donderdag 4 Juni\ 2015 om 12:14 |
Iks
![]()
|
BerichtInstaller 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 AntwoordenDonderdag 4 Juni\ 2015 om 18:03
Maandag 15 Juni\ 2015 om 12:55
Maandag 15 Juni\ 2015 om 12:56
|
cramserb | Woensdag 20 Mei 2015 om 21:07 |
cramserb
![]()
|
BerichtThe 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.
AntwoordenZaterdag 27 Juni\ 2015 om 19:29
|
le_med_amine | Zondag 10 Mei 2015 om 16:10 |
le_med_amine
![]()
|
Berichtit 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 Antwoorden |
petch | Vrijdag 24 April 2015 om 18:50 |
petch
![]()
|
WarningThis update has not been approved yet by the team. BerichtAllow 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 Antwoorden |
lulavc | Zaterdag 28 Februari 2015 om 1:45 |
lulavc
![]()
|
BerichtUBUNTU 14.04 running fine. Only problem is some missing words on the cards. There is any fix ? AntwoordenZaterdag 28 Februari 2015 om 2:13
|
paladin_stz | Dinsdag 10 Februari 2015 om 3:02 |
paladin_stz
![]()
|
BerichtMy 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
AntwoordenMaandag 27 April 2015 om 20:12
Zondag 6 September 2015 om 10:24
|
RobLoach | Vrijdag 6 Februari 2015 om 16:54 |
RobLoach
![]()
|
BerichtHearthstone 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. AntwoordenZaterdag 7 Februari 2015 om 15:19
|
weesnich | Maandag 26 Januari 2015 om 5:09 |
weesnich
![]()
|
BerichtHi, 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! AntwoordenMaandag 26 Januari 2015 om 5:18
|
daveood | Dinsdag 20 Januari 2015 om 20:02 |
daveood
![]()
|
BerichtHello, 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 Antwoorden |
LloydKM | Zondag 11 Januari 2015 om 22:23 |
LloydKM
![]()
|
BerichtIt 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. AntwoordenDinsdag 20 Januari 2015 om 3:35
Dinsdag 20 Januari 2015 om 4:23
|
LowMemory | Zaterdag 10 Januari 2015 om 18:27 |
LowMemory
![]()
|
BerichtJust 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.
Antwoorden |
telzum | Donderdag 25 December 2014 om 12:11 |
telzum
![]()
|
BerichtHello, 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? :-/ Antwoorden |
Fapi | Zaterdag 13 December 2014 om 22:17 |
Fapi
![]()
|
BerichtHi, 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 ? Antwoorden |
bast | Woensdag 10 December 2014 om 16:48 |
bast
![]()
|
BerichtHearthstone 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. Antwoorden |
karakuroness | Woensdag 10 December 2014 om 13:42 |
karakuroness
![]()
|
BerichtNew 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. AntwoordenWoensdag 10 December 2014 om 16:38
Donderdag 11 December 2014 om 1:53
Donderdag 11 December 2014 om 3:33
|
ttblue | Vrijdag 5 December 2014 om 20:51 |
ttblue
![]()
|
BerichtHearthstone 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... :( )
AntwoordenVrijdag 5 December 2014 om 20:53
Vrijdag 5 December 2014 om 20:59
Maandag 8 December 2014 om 8:20
Maandag 8 December 2014 om 11:47
Woensdag 17 December 2014 om 18:59
Woensdag 17 December 2014 om 19:00
Donderdag 18 December 2014 om 10:12
Donderdag 18 December 2014 om 10:13
Maandag 29 December 2014 om 9:19
Zondag 4 Januari 2015 om 0:34
Maandag 2 Maart 2015 om 1:05
Dinsdag 26 Mei 2015 om 22:25
Dinsdag 26 Mei 2015 om 22:26
|
andrepd | Vrijdag 5 December 2014 om 12:44 |
andrepd
![]()
|
BerichtThis 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 . AntwoordenWoensdag 10 December 2014 om 16:42
|
matiej | Dinsdag 25 November 2014 om 11:48 |
matiej
![]()
|
Bericht
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? AntwoordenMaandag 15 December 2014 om 17:50
|
andrepd | Zondag 16 November 2014 om 15:39 |
andrepd
![]()
|
BerichtDuring 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. AntwoordenZondag 16 November 2014 om 18:43
Zondag 4 Januari 2015 om 0:35
|
z3Kr0w | Maandag 10 November 2014 om 5:48 |
z3Kr0w
![]()
|
BerichtRun flawlessly with PlayOnLinux pluggin "Script Creator" on Ubuntu 14.10 64 bits. Intel® Core™ i7 CPU Q 740 @ 1.73GHz × 8 Antwoorden |
rincondelgabo | Vrijdag 7 November 2014 om 9:21 |
rincondelgabo
![]()
|
BerichtHi, 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! AntwoordenVrijdag 7 November 2014 om 13:34
Maandag 10 November 2014 om 7:35
Maandag 10 November 2014 om 7:40
Zondag 4 Januari 2015 om 0:35
|
shikaruko | Maandag 27 October 2014 om 22:28 |
shikaruko
![]()
|
BerichtStrange blackscreen on Mint 17 for battlenet AntwoordenZondag 4 Januari 2015 om 0:36
Dinsdag 24 Maart 2015 om 21:51
|
bhouba | Maandag 27 October 2014 om 16:27 |
bhouba
![]()
|
Berichtok like a charm on kubuntu 14.04 64 bits . Thanks a lot ! Antwoorden |
stylou | Maandag 20 October 2014 om 13:10 |
stylou
![]()
|
BerichtInstallation et utilisation OK sous ubuntu 14.04 Antwoorden |
cgarlock | Donderdag 2 October 2014 om 21:57 |
cgarlock
![]()
|
BerichtThis 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. AntwoordenVrijdag 3 October 2014 om 10:46
Vrijdag 3 October 2014 om 10:54
Zondag 4 Januari 2015 om 0:36
|
HWHank | Vrijdag 19 September 2014 om 12:09 |
HWHank
![]()
|
BerichtAfter 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! Antwoorden |
m1kc | Vrijdag 29 Augustus 2014 om 16:50 |
m1kc
![]()
|
WarningThis update has not been approved yet by the team. BerichtThe 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 AntwoordenDonderdag 4 September 2014 om 2:24
Donderdag 4 September 2014 om 2:25
Donderdag 4 September 2014 om 21:59
Vrijdag 5 September 2014 om 3:23
Donderdag 18 September 2014 om 20:08
|
m1kc | Vrijdag 29 Augustus 2014 om 16:42 |
m1kc
![]()
|
WarningThis update has not been approved yet by the team. BerichtSlightly 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 AntwoordenVrijdag 29 Augustus 2014 om 16:45
|
kweepeer2 | Woensdag 30 Juli 2014 om 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 Antwoorden |
mir | Vrijdag 18 Juli 2014 om 3:52 |
mir
![]()
|
BerichtKeep 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. AntwoordenDonderdag 4 September 2014 om 19:40
|
Trynight | Zondag 13 Juli 2014 om 14:53 |
Trynight
![]()
|
BerichtWorks very well! -wininet -atl100 -atl90 -d3dx9_36 -d3dx9_43 -msvcr100 AntwoordenDonderdag 18 September 2014 om 19:28
|
gnegnelino | Dinsdag 24 Juni\ 2014 om 16:32 |
gnegnelino
![]()
|
BerichtProcessor: 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. Antwoorden |
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