Hearthstone
Informations
Créateur | Messages |
---|---|
kweepeer2
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience56 46 DescriptionHearthstone is a fast-paced strategic card-game from Blizzard. Free-to-play. Code source#!/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:
ContribuerMembre | Messages |
kmelia | Mercredi 24 Février 2021 à 18:24 |
kmelia
|
MessagesAvec 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 RéponsesEdité par kmelia |
Dick Tracy | Lundi 28 Décembre 2020 à 23:12 |
Dick Tracy
|
MessagesBlizzard 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. Réponses |
Dadu042 | Dimanche 1 Novembre 2020 à 18:18 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe 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 Nouveau code source#!/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 Réponses |
Dadu042 | Dimanche 1 Novembre 2020 à 17:04 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWine 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 Nouveau code source#!/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 Réponses |
lem0nade | Dimanche 1 Novembre 2020 à 15:25 |
lem0nade
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI 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" Nouveau code source#!/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 RéponsesDimanche 1 Novembre 2020 à 17:03
|
Dadu042 | Mercredi 13 Novembre 2019 à 15:51 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSome 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 Nouveau code source#!/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 RéponsesEdité par Dadu042 |
Dadu042 | Samedi 25 Mai 2019 à 0:58 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChanges 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 Nouveau code source#!/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 RéponsesEdité par Dadu042 |
iArska | Dimanche 28 Janvier 2018 à 0:39 |
iArska
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesNote 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 Nouveau code source#!/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 Réponses |
pashr | Dimanche 24 September 2017 à 15:44 |
pashr
|
MessagesHi 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? RéponsesLundi 25 September 2017 à 12:05
|
Oria | Jeudi 21 September 2017 à 23:18 |
Oria
|
MessagesHello, 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! RéponsesVendredi 22 September 2017 à 1:12
|
hex0910 | Lundi 18 September 2017 à 21:55 |
hex0910
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOkay 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 Nouveau code source#!/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 RéponsesLundi 18 September 2017 à 22:17
Lundi 25 September 2017 à 7:24
Lundi 25 September 2017 à 7:57
Samedi 9 Décembre 2017 à 14:01
|
kmelia | Mercredi 6 September 2017 à 17:01 |
kmelia
|
MessagesI have created a new application https://www.playonlinux.com/en/app-3242-HearthStone_Blizzard_Application.html to get the script up to date. Réponses |
sorawotobu | Samedi 2 September 2017 à 21:01 |
sorawotobu
|
MessagesI 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. RéponsesDimanche 3 September 2017 à 16:23
Lundi 4 September 2017 à 2:59
|
Doc.C | Mercredi 23 Aoüt 2017 à 8:33 |
Doc.C
|
MessagesI 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. RéponsesMercredi 23 Aoüt 2017 à 23:03
Jeudi 24 Aoüt 2017 à 11:40
Dimanche 3 September 2017 à 13:06
Lundi 4 September 2017 à 18:53
Mercredi 6 September 2017 à 0:07
Mercredi 6 September 2017 à 16:29
Mercredi 6 September 2017 à 20:11
|
tanaydin | Vendredi 18 Aoüt 2017 à 0:09 |
tanaydin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesSamedi 19 Aoüt 2017 à 9:38
|
tanaydin | Jeudi 17 Aoüt 2017 à 23:24 |
tanaydin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
MaReeo | Jeudi 17 Aoüt 2017 à 12:25 |
MaReeo
|
MessagesHello! RéponsesJeudi 17 Aoüt 2017 à 12:39
|
Arizs | Mercredi 9 Aoüt 2017 à 8:36 |
Arizs
|
MessagesHi, 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 RéponsesMercredi 9 Aoüt 2017 à 8:38
|
Picon | Vendredi 21 Juillet 2017 à 13:39 |
Picon
|
MessagesHello, 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:
Réponses |
pashr | Vendredi 14 Juillet 2017 à 11:36 |
pashr
|
Messagessince 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
Réponses |
pashr | Jeudi 22 Juin 2017 à 13:26 |
pashr
|
MessagesI 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? RéponsesSamedi 1 Juillet 2017 à 18:45
|
dlee | Vendredi 16 Juin 2017 à 5:09 |
dlee
|
MessagesI 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
<>RéponsesEdité par Dadu042 |
kmelia | Mercredi 14 Juin 2017 à 12:41 |
kmelia
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesList 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 Nouveau code source#!/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 RéponsesSamedi 1 Juillet 2017 à 1:01
Samedi 1 Juillet 2017 à 18:45
Lundi 3 Juillet 2017 à 9:04
Vendredi 14 Juillet 2017 à 12:05
Vendredi 14 Juillet 2017 à 12:45
Mardi 18 Juillet 2017 à 16:10
Mardi 18 Juillet 2017 à 16:34
Mardi 18 Juillet 2017 à 16:35
Mercredi 19 Juillet 2017 à 23:56
Mercredi 19 Juillet 2017 à 23:58
|
kmelia | Mardi 13 Juin 2017 à 18:22 |
kmelia
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate 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 Nouveau code source#!/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 Réponses |
andrikos | Mercredi 7 Juin 2017 à 20:34 |
andrikos
|
MessagesSup 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. :)
Réponses |
hex0910 | Mercredi 7 Juin 2017 à 14:48 |
hex0910
|
MessagesTo 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. Réponses |
EfficiencyVI | Vendredi 2 Juin 2017 à 3:07 |
EfficiencyVI
|
MessagesPatch 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? RéponsesVendredi 2 Juin 2017 à 15:56
Vendredi 2 Juin 2017 à 16:10
Vendredi 2 Juin 2017 à 16:13
Vendredi 2 Juin 2017 à 18:18
Vendredi 2 Juin 2017 à 18:46
Samedi 3 Juin 2017 à 14:29
Dimanche 4 Juin 2017 à 15:20
Dimanche 4 Juin 2017 à 19:57
Mercredi 7 Juin 2017 à 20:23
Jeudi 8 Juin 2017 à 6:35
|
Berserker | Jeudi 1 Juin 2017 à 0:38 |
Berserker
|
|
Bouzigouloum | Samedi 29 Avril 2017 à 23:42 |
Bouzigouloum
|
Messages!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!!! Réponses |
DrannorPOL | Mardi 18 Avril 2017 à 19:31 |
DrannorPOL
|
MessagesAs 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? RéponsesMercredi 19 Avril 2017 à 16:33
Vendredi 21 Avril 2017 à 4:13
Vendredi 21 Avril 2017 à 23:43
Lundi 24 Avril 2017 à 0:05
|
Tsumikitty | Mardi 4 Avril 2017 à 20:54 |
Tsumikitty
|
MessagesAfter the update, Hearthstone fails to load. I press "PLAY" and the icon shows up, but then Hearthstone crashes. Anyone have a fix?
Réponses |
mardraze | Dimanche 2 Avril 2017 à 15:18 |
mardraze
|
MessagesOn 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 Réponses |
DEVV | Mercredi 29 Mars 2017 à 10:31 |
DEVV
|
MessagesIf 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)
Réponses |
sparxx | Samedi 25 Mars 2017 à 3:10 |
sparxx
|
MessagesI'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 Réponses |
Famekki | Jeudi 9 Février 2017 à 10:20 |
Famekki
|
MessagesI 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. Réponses |
GeorgeCh | Samedi 24 Décembre 2016 à 20:22 |
GeorgeCh
|
MessagesOn 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. Réponses |
RandmSpesfic | Mardi 29 Novembre 2016 à 1:12 |
RandmSpesfic
|
MessagesHEARTHSTONE 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 Réponses |
RandmSpesfic | Vendredi 18 Novembre 2016 à 16:16 |
RandmSpesfic
|
MessagesHow 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 RéponsesVendredi 18 Novembre 2016 à 16:18
Vendredi 18 Novembre 2016 à 16:21
Vendredi 18 Novembre 2016 à 16:24
|
treePL | Vendredi 4 Novembre 2016 à 15:07 |
treePL
|
MessagesCheck Troubleshooting from: Réponses |
amplustomp | Mercredi 12 Octobre 2016 à 6:44 |
amplustomp
|
MessagesAll 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 Réponses |
hunebku | Mardi 11 Octobre 2016 à 21:37 |
hunebku
|
MessagesHello Réponses |
bbame55 | Lundi 10 Octobre 2016 à 2:52 |
bbame55
|
MessagesHearthstone 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 Réponses |
tfid | Jeudi 8 September 2016 à 22:37 |
tfid
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAll 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 Nouveau code source#!/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 RéponsesMardi 13 September 2016 à 19:08
Vendredi 16 September 2016 à 13:59
Samedi 17 September 2016 à 0:01
Lundi 21 Novembre 2016 à 23:14
Lundi 28 Novembre 2016 à 9:27
|
kweepeer2 | Dimanche 7 Aoüt 2016 à 14:04 |
kweepeer2
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOk 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 Nouveau code source#!/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 Réponses |
MineElectricity | Jeudi 28 Juillet 2016 à 1:40 |
MineElectricity
|
MessagesI don't know why, but since yesterday it doesn't work, on POL and Crossover, manual install or no ... RéponsesJeudi 28 Juillet 2016 à 4:53
Jeudi 28 Juillet 2016 à 14:21
Jeudi 28 Juillet 2016 à 14:24
Jeudi 28 Juillet 2016 à 22:55
Samedi 30 Juillet 2016 à 0:18
Lundi 1 Aoüt 2016 à 10:15
Jeudi 4 Aoüt 2016 à 3:48
|
drdillio | Mercredi 13 Juillet 2016 à 9:09 |
drdillio
|
MessagesThere 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! RéponsesVendredi 15 Juillet 2016 à 9:14
|
sbrdste | Lundi 11 Juillet 2016 à 12:33 |
sbrdste
|
MessagesThe 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 Réponses |
moss | Jeudi 30 Juin 2016 à 0:27 |
moss
|
MessagesHi, 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? Réponses |
RobinHood16 | Samedi 11 Juin 2016 à 0:39 |
RobinHood16
|
MessagesOverall, 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"). RéponsesMercredi 15 Juin 2016 à 6:44
Lundi 29 Aoüt 2016 à 17:57
|
kweepeer2 | Mardi 24 Mai 2016 à 21:43 |
kweepeer2
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesNew 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 Nouveau code source#!/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 RéponsesDimanche 29 Mai 2016 à 15:59
|
Sleize | Jeudi 14 Avril 2016 à 21:32 |
Sleize
|
MessagesL'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 Réponses |
Osveron | Mardi 5 Avril 2016 à 11:34 |
Osveron
|
MessagesAfter 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? Réponses |
bunnyapocalypse | Mardi 29 Mars 2016 à 0:24 |
bunnyapocalypse
|
MessagesAs of today, I can not set my reigon in the initial battle.net login, making it impossible for me to install the program. RéponsesMercredi 30 Mars 2016 à 3:23
|
Ludius | Jeudi 24 Mars 2016 à 18:14 |
Ludius
|
|
amp | Vendredi 4 Mars 2016 à 3:25 |
amp
|
MessagesThe 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. Réponses |
kweepeer2 | Lundi 22 Février 2016 à 21:04 |
kweepeer2
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe 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 Nouveau code source#!/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 RéponsesJeudi 24 Mars 2016 à 19:59
Jeudi 14 Avril 2016 à 1:07
Mardi 24 Mai 2016 à 21:44
Samedi 24 September 2016 à 13:29
|
raphamaster | Mardi 9 Février 2016 à 23:58 |
raphamaster
|
MessagesThe 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? RéponsesMercredi 10 Février 2016 à 8:08
Mercredi 10 Février 2016 à 19:03
Mercredi 10 Février 2016 à 19:03
Mercredi 10 Février 2016 à 19:04
Mercredi 10 Février 2016 à 19:07
Mercredi 10 Février 2016 à 19:15
Lundi 15 Février 2016 à 20:45
|
7z4r | Samedi 16 Janvier 2016 à 15:23 |
7z4r
|
Messagesnvm - 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 Réponses |
7z4r | Vendredi 15 Janvier 2016 à 21:00 |
7z4r
|
MessagesThanks 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... Réponses |
4402927 | Jeudi 31 Décembre 2015 à 15:16 |
4402927
|
MessagesRéponses |
kholyphoenix1 | Mercredi 30 Décembre 2015 à 15:05 |
kholyphoenix1
|
MessagesPefect! Réponses |
petch | Vendredi 4 Décembre 2015 à 23:50 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd 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" Nouveau code source#!/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 Réponses |
asdbimbaj | Mardi 1 Décembre 2015 à 11:06 |
asdbimbaj
|
MessagesUbuntu 15.10 Clean install nvidia -355 driver without a problem , works perfectly
Réponses |
RobLoach | Lundi 30 Novembre 2015 à 1:51 |
RobLoach
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdates 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 Nouveau code source#!/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 Réponses |
JonnyJungle | Samedi 28 Novembre 2015 à 19:38 |
JonnyJungle
|
MessagesHello, 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 RéponsesSamedi 28 Novembre 2015 à 21:26
|
kosmik | Jeudi 26 Novembre 2015 à 19:07 |
kosmik
|
Messages
Réponses |
alexajax | Mercredi 11 Novembre 2015 à 19:06 |
alexajax
|
MessagesPlease, 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? Réponses |
Youjin | Mardi 10 Novembre 2015 à 20:12 |
Youjin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWine 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 Nouveau code source#!/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 Réponses |
hadronhearth | Vendredi 6 Novembre 2015 à 2:43 |
hadronhearth
|
MessagesI 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. Réponses |
tatso | Samedi 24 Octobre 2015 à 4:20 |
tatso
|
MessagesI 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
RéponsesMercredi 4 Novembre 2015 à 17:24
Vendredi 4 Décembre 2015 à 21:24
Mercredi 9 Décembre 2015 à 2:24
Dimanche 3 Janvier 2016 à 0:43
Mercredi 6 Janvier 2016 à 15:42
Jeudi 24 Mars 2016 à 17:49
Jeudi 24 Mars 2016 à 18:11
|
bsnoguera | Jeudi 15 Octobre 2015 à 5:00 |
bsnoguera
|
MessagesHello, 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!
RéponsesMercredi 4 Novembre 2015 à 17:25
|
marko47 | Samedi 10 Octobre 2015 à 3:26 |
marko47
|
MessagesPlaying 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. RéponsesSamedi 10 Octobre 2015 à 3:31
|
petch | Vendredi 2 Octobre 2015 à 6:27 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSet 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. Nouveau code source#!/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 RéponsesDimanche 4 Octobre 2015 à 19:49
|
Kurolox | Jeudi 1 Octobre 2015 à 15:49 |
Kurolox
|
MessagesCan'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 Réponses |
postaljester | Jeudi 1 Octobre 2015 à 3:33 |
postaljester
|
Messageswas 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.
RéponsesJeudi 1 Octobre 2015 à 3:39
Vendredi 2 Octobre 2015 à 6:43
|
syjeo | Mardi 15 September 2015 à 10:09 |
syjeo
|
MessagesHello, 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.
Réponses |
roygbiv | Mardi 1 September 2015 à 11:43 |
roygbiv
|
MessagesI 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.
Réponses |
Reaver32 | Mardi 1 September 2015 à 6:24 |
Reaver32
|
MessagesIt 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. Réponses |
deri82 | Dimanche 9 Aoüt 2015 à 17:17 |
deri82
|
MessagesYou have set VMS value as 64mb. Isnt that the value of GPU memory size? That's really low. Réponses |
flubbes | Dimanche 9 Aoüt 2015 à 14:10 |
flubbes
|
MessagesError in POL_Shortcut
Yes I left everything at default RéponsesMercredi 19 Aoüt 2015 à 19:59
|
petch | Mercredi 5 Aoüt 2015 à 22:54 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUse 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" Nouveau code source#!/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 Réponses |
amp | Mercredi 5 Aoüt 2015 à 19:55 |
amp
|
MessagesThe 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. Réponses |
kholyphoenix1 | Jeudi 30 Juillet 2015 à 17:36 |
kholyphoenix1
|
MessagesPlataform: Linux Fedora 22 --- Without slowing down the speed is normal in the game. RéponsesVendredi 31 Juillet 2015 à 15:15
|
l3iggs | Mardi 28 Juillet 2015 à 14:35 |
l3iggs
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe 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" Nouveau code source#!/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 Réponses |
RepairedPanic1 | Dimanche 28 Juin 2015 à 21:55 |
RepairedPanic1
|
MessagesI 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. Réponses |
Kevin4linux | Vendredi 26 Juin 2015 à 16:40 |
Kevin4linux
|
Messageshey, 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 RéponsesVendredi 26 Juin 2015 à 16:45
|
Kevin4linux | Vendredi 26 Juin 2015 à 16:25 |
Kevin4linux
|
Messageshey, 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. :(
Réponses |
Iks | Jeudi 4 Juin 2015 à 12:14 |
Iks
|
MessagesInstaller 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 RéponsesJeudi 4 Juin 2015 à 18:03
Lundi 15 Juin 2015 à 12:55
Lundi 15 Juin 2015 à 12:56
|
cramserb | Mercredi 20 Mai 2015 à 21:07 |
cramserb
|
MessagesThe 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.
RéponsesSamedi 27 Juin 2015 à 19:29
|
le_med_amine | Dimanche 10 Mai 2015 à 16:10 |
le_med_amine
|
Messagesit 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 Réponses |
petch | Vendredi 24 Avril 2015 à 18:50 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAllow 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" Nouveau code source#!/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 Réponses |
lulavc | Samedi 28 Février 2015 à 1:45 |
lulavc
|
MessagesUBUNTU 14.04 running fine. Only problem is some missing words on the cards. There is any fix ? RéponsesSamedi 28 Février 2015 à 2:13
|
paladin_stz | Mardi 10 Février 2015 à 3:02 |
paladin_stz
|
MessagesMy 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
RéponsesLundi 27 Avril 2015 à 20:12
Dimanche 6 September 2015 à 10:24
|
RobLoach | Vendredi 6 Février 2015 à 16:54 |
RobLoach
|
MessagesHearthstone 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. RéponsesSamedi 7 Février 2015 à 15:19
|
weesnich | Lundi 26 Janvier 2015 à 5:09 |
weesnich
|
MessagesHi, 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! RéponsesLundi 26 Janvier 2015 à 5:18
|
daveood | Mardi 20 Janvier 2015 à 20:02 |
daveood
|
MessagesHello, 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 Réponses |
LloydKM | Dimanche 11 Janvier 2015 à 22:23 |
LloydKM
|
MessagesIt 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. RéponsesMardi 20 Janvier 2015 à 3:35
Mardi 20 Janvier 2015 à 4:23
|
LowMemory | Samedi 10 Janvier 2015 à 18:27 |
LowMemory
|
MessagesJust 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.
Réponses |
telzum | Jeudi 25 Décembre 2014 à 12:11 |
telzum
|
MessagesHello, 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? :-/ Réponses |
Fapi | Samedi 13 Décembre 2014 à 22:17 |
Fapi
|
MessagesHi, 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 ? Réponses |
bast | Mercredi 10 Décembre 2014 à 16:48 |
bast
|
MessagesHearthstone 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. Réponses |
karakuroness | Mercredi 10 Décembre 2014 à 13:42 |
karakuroness
|
MessagesNew 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. RéponsesMercredi 10 Décembre 2014 à 16:38
Jeudi 11 Décembre 2014 à 1:53
Jeudi 11 Décembre 2014 à 3:33
|
ttblue | Vendredi 5 Décembre 2014 à 20:51 |
ttblue
|
MessagesHearthstone 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... :( )
RéponsesVendredi 5 Décembre 2014 à 20:53
Vendredi 5 Décembre 2014 à 20:59
Lundi 8 Décembre 2014 à 8:20
Lundi 8 Décembre 2014 à 11:47
Mercredi 17 Décembre 2014 à 18:59
Mercredi 17 Décembre 2014 à 19:00
Jeudi 18 Décembre 2014 à 10:12
Jeudi 18 Décembre 2014 à 10:13
Lundi 29 Décembre 2014 à 9:19
Dimanche 4 Janvier 2015 à 0:34
Lundi 2 Mars 2015 à 1:05
Mardi 26 Mai 2015 à 22:25
Mardi 26 Mai 2015 à 22:26
|
andrepd | Vendredi 5 Décembre 2014 à 12:44 |
andrepd
|
MessagesThis 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 . RéponsesMercredi 10 Décembre 2014 à 16:42
|
matiej | Mardi 25 Novembre 2014 à 11:48 |
matiej
|
Messages
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? RéponsesLundi 15 Décembre 2014 à 17:50
|
andrepd | Dimanche 16 Novembre 2014 à 15:39 |
andrepd
|
MessagesDuring 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. RéponsesDimanche 16 Novembre 2014 à 18:43
Dimanche 4 Janvier 2015 à 0:35
|
z3Kr0w | Lundi 10 Novembre 2014 à 5:48 |
z3Kr0w
|
MessagesRun flawlessly with PlayOnLinux pluggin "Script Creator" on Ubuntu 14.10 64 bits. Intel® Core™ i7 CPU Q 740 @ 1.73GHz × 8 Réponses |
rincondelgabo | Vendredi 7 Novembre 2014 à 9:21 |
rincondelgabo
|
MessagesHi, 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! RéponsesVendredi 7 Novembre 2014 à 13:34
Lundi 10 Novembre 2014 à 7:35
Lundi 10 Novembre 2014 à 7:40
Dimanche 4 Janvier 2015 à 0:35
|
shikaruko | Lundi 27 Octobre 2014 à 22:28 |
shikaruko
|
MessagesStrange blackscreen on Mint 17 for battlenet RéponsesDimanche 4 Janvier 2015 à 0:36
Mardi 24 Mars 2015 à 21:51
|
bhouba | Lundi 27 Octobre 2014 à 16:27 |
bhouba
|
Messagesok like a charm on kubuntu 14.04 64 bits . Thanks a lot ! Réponses |
stylou | Lundi 20 Octobre 2014 à 13:10 |
stylou
|
MessagesInstallation et utilisation OK sous ubuntu 14.04 Réponses |
cgarlock | Jeudi 2 Octobre 2014 à 21:57 |
cgarlock
|
MessagesThis 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. RéponsesVendredi 3 Octobre 2014 à 10:46
Vendredi 3 Octobre 2014 à 10:54
Dimanche 4 Janvier 2015 à 0:36
|
HWHank | Vendredi 19 September 2014 à 12:09 |
HWHank
|
MessagesAfter 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! Réponses |
m1kc | Vendredi 29 Aoüt 2014 à 16:50 |
m1kc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe 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 Nouveau code source#!/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 RéponsesJeudi 4 September 2014 à 2:24
Jeudi 4 September 2014 à 2:25
Jeudi 4 September 2014 à 21:59
Vendredi 5 September 2014 à 3:23
Jeudi 18 September 2014 à 20:08
|
m1kc | Vendredi 29 Aoüt 2014 à 16:42 |
m1kc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSlightly 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 Nouveau code source#!/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 RéponsesVendredi 29 Aoüt 2014 à 16:45
|
kweepeer2 | Mercredi 30 Juillet 2014 à 21:01 |
kweepeer2
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
mir | Vendredi 18 Juillet 2014 à 3:52 |
mir
|
MessagesKeep 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. RéponsesJeudi 4 September 2014 à 19:40
|
Trynight | Dimanche 13 Juillet 2014 à 14:53 |
Trynight
|
MessagesWorks very well! -wininet -atl100 -atl90 -d3dx9_36 -d3dx9_43 -msvcr100 RéponsesJeudi 18 September 2014 à 19:28
|
gnegnelino | Mardi 24 Juin 2014 à 16:32 |
gnegnelino
|
MessagesProcessor: 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. Réponses |
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