World Of Warships
Informations
Creator | Message |
---|---|
mimi89999
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks9 12 DescriptionNaval warfare MMO, free to play. Released in 2015. Wikipedia. Warning: As of may 2020, the game might now fail to install, because the installation became impossible without the 'Wargaming.net Game Center' (appdb.winehq.org). ScreenshotsSource code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : see changelog # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # [Dadu042] (2020-01-09) # Fix POL_RequiredVersion. # Fix POL_Shortcut category. # [Dadu042] (2020-06-08) # Wine 4.11 -> 5.3 # Game now fail to install correctly. I think it's because the 'Wargaming Game Center' is now mandatory. # Disable automatic setup download. # KNOWN ISSUES: # - Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 # # # - After installing the 'Wargaming Game Center' (it's the begin of the installation), its window keep black. Wine 4.21, 5.0. Fix: Wine 5.3 # - After installing the 'Wargaming Game Center' (it's the begin of the installation), it does crash. Wine 4.11 # - After installing the 'Wargaming Game Center' I get 'Wargaming.net Game Center has stopped working' (window). Wine 5.3 # - After installing the 'Wargaming Game Center' it does not open (only appear in the task bar), installation stall. Wine 5.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="5.3" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win10" ####################################### # Installing mandatory dependencies # ####################################### POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs POL_Call POL_Install_physx ####################################### # Select WoWS version # ####################################### cd "$WINEPREFIX/drive_c" POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file (.EXE)')" "$TITLE" INSTALLER="$APP_ANSWER" # Disabled because as of 2020-06 these .EXE (Europe) fail to install. The game seems now to require to use 'Wargaming Game Center'. # # POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" # [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" # [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # # POL_Download "$DL_URL" # INSTALLER="${DL_URL##*/}" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" ################################ # Modify WoWSLauncher.cfg file # ################################ OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWN ISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Monday 8 June 2020 at 13:49 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -26,7 +26,8 @@ # Fix POL_Shortcut category. # [Dadu042] (2020-06-08) # Wine 4.11 -> 5.3 -# Game now fail to install correctly. +# Game now fail to install correctly. I think it's because the 'Wargaming Game Center' is now mandatory. +# Disable automatic setup download. # KNOWN ISSUES: @@ -41,7 +42,7 @@ # # - After installing the 'Wargaming Game Center' (it's the begin of the installation), its window keep black. Wine 4.21, 5.0. Fix: Wine 5.3 # - After installing the 'Wargaming Game Center' (it's the begin of the installation), it does crash. Wine 4.11 -# - After installing the 'Wargaming Game Center' it does 'Stop working' (window). Wine 5.3 +# - After installing the 'Wargaming Game Center' I get 'Wargaming.net Game Center has stopped working' (window). Wine 5.3 # - After installing the 'Wargaming Game Center' it does not open (only appear in the task bar), installation stall. Wine 5.7 @@ -90,16 +91,25 @@ POL_Call POL_Install_physx ####################################### -# Main part of this script # +# Select WoWS version # ####################################### - -#Select WoWS version -POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" -[ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" + +cd "$WINEPREFIX/drive_c" + +POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file (.EXE)')" "$TITLE" +INSTALLER="$APP_ANSWER" + +# Disabled because as of 2020-06 these .EXE (Europe) fail to install. The game seems now to require to use 'Wargaming Game Center'. +# +# POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" +# [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +# [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" +# [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" +# [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +# [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" +# +# POL_Download "$DL_URL" +# INSTALLER="${DL_URL##*/}" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" @@ -107,11 +117,6 @@ # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" - -cd "$WINEPREFIX/drive_c" -POL_Download "$DL_URL" -INSTALLER="${DL_URL##*/}" - POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : see changelog # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # [Dadu042] (2020-01-09) # Fix POL_RequiredVersion. # Fix POL_Shortcut category. # [Dadu042] (2020-06-08) # Wine 4.11 -> 5.3 # Game now fail to install correctly. I think it's because the 'Wargaming Game Center' is now mandatory. # Disable automatic setup download. # KNOWN ISSUES: # - Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 # # # - After installing the 'Wargaming Game Center' (it's the begin of the installation), its window keep black. Wine 4.21, 5.0. Fix: Wine 5.3 # - After installing the 'Wargaming Game Center' (it's the begin of the installation), it does crash. Wine 4.11 # - After installing the 'Wargaming Game Center' I get 'Wargaming.net Game Center has stopped working' (window). Wine 5.3 # - After installing the 'Wargaming Game Center' it does not open (only appear in the task bar), installation stall. Wine 5.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="5.3" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win10" ####################################### # Installing mandatory dependencies # ####################################### POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs POL_Call POL_Install_physx ####################################### # Select WoWS version # ####################################### cd "$WINEPREFIX/drive_c" POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file (.EXE)')" "$TITLE" INSTALLER="$APP_ANSWER" # Disabled because as of 2020-06 these .EXE (Europe) fail to install. The game seems now to require to use 'Wargaming Game Center'. # # POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" # [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" # [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # # POL_Download "$DL_URL" # INSTALLER="${DL_URL##*/}" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" ################################ # Modify WoWSLauncher.cfg file # ################################ OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWN ISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Monday 8 June 2020 at 13:20 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageFail to install. Differences@@ -24,44 +24,75 @@ # [Dadu042] (2020-01-09) # Fix POL_RequiredVersion. # Fix POL_Shortcut category. +# [Dadu042] (2020-06-08) +# Wine 4.11 -> 5.3 +# Game now fail to install correctly. + # KNOWN ISSUES: -# Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 +# - Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 +# +# +# - After installing the 'Wargaming Game Center' (it's the begin of the installation), its window keep black. Wine 4.21, 5.0. Fix: Wine 5.3 +# - After installing the 'Wargaming Game Center' (it's the begin of the installation), it does crash. Wine 4.11 +# - After installing the 'Wargaming Game Center' it does 'Stop working' (window). Wine 5.3 +# - After installing the 'Wargaming Game Center' it does not open (only appear in the task bar), installation stall. Wine 5.7 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="4.11" +WINEVERSION="5.3" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" +GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 - + POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" - -POL_SetupWindow_VMS "512" - +Set_OS "win10" + +####################################### +# Installing mandatory dependencies # +####################################### + POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 - + +################ +# GPU # +################ + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Useful for Nvidia GPUs +POL_Call POL_Install_physx + +####################################### +# Main part of this script # +####################################### + #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" @@ -69,23 +100,28 @@ [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" - + # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" - - + + cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" - + +POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" + POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" - -# Edit WoWSLauncher.cfg file + +################################ +# Modify WoWSLauncher.cfg file # +################################ + OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -99,7 +135,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -113,7 +149,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -127,16 +163,16 @@ fi done /bin/rm $TFILE - + POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" - + # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html - -# Workaround (see KNOWNISSUES above. There are 2 shortcuts because this script does not force WineArch): + +# Workaround (see KNOWN ISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" - + POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : see changelog # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # [Dadu042] (2020-01-09) # Fix POL_RequiredVersion. # Fix POL_Shortcut category. # [Dadu042] (2020-06-08) # Wine 4.11 -> 5.3 # Game now fail to install correctly. # KNOWN ISSUES: # - Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 # # # - After installing the 'Wargaming Game Center' (it's the begin of the installation), its window keep black. Wine 4.21, 5.0. Fix: Wine 5.3 # - After installing the 'Wargaming Game Center' (it's the begin of the installation), it does crash. Wine 4.11 # - After installing the 'Wargaming Game Center' it does 'Stop working' (window). Wine 5.3 # - After installing the 'Wargaming Game Center' it does not open (only appear in the task bar), installation stall. Wine 5.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="5.3" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win10" ####################################### # Installing mandatory dependencies # ####################################### POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" ################################ # Modify WoWSLauncher.cfg file # ################################ OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWN ISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Thursday 9 January 2020 at 19:45 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -21,6 +21,9 @@ # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 +# [Dadu042] (2020-01-09) +# Fix POL_RequiredVersion. +# Fix POL_Shortcut category. # KNOWN ISSUES: # Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 @@ -48,7 +51,7 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" -POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" +POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" @@ -125,15 +128,15 @@ done /bin/rm $TFILE -POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "Game;StrategyGame;" +POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" -# Probable fix for those whose launcher is stuck at receiving updates: +# Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWNISSUES above. There are 2 shortcuts because this script does not force WineArch): -POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "Game;StrategyGame;" -POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "Game;StrategyGame;" +POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" +POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : see changelog # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # [Dadu042] (2020-01-09) # Fix POL_RequiredVersion. # Fix POL_Shortcut category. # KNOWN ISSUES: # Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="4.11" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "" "" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWNISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "" "" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "" "" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Wednesday 26 June 2019 at 17:55 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageSee changelog. Played 15 min.
I wonder if the code about 'display_seeding_mode' is really required (seems related to torrents inside the game, was copied from World of Tanks). Differences@@ -19,7 +19,7 @@ # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 -# [Dadu042] (2019-06-27) +# [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # KNOWN ISSUES: New source code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : see changelog # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # [Dadu042] (2019-06-26) # Wine 4.0.1 -> 4.11. POL_RequiredVersion 4.3.4 # KNOWN ISSUES: # Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' # # Game does crash at the end of a game session. Wine 3.21 and 4.0.1 26/06/2019. Game v0.8.4.0 # Fixed by using Wine 4.11 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="4.11" AUTHOR="Several (see the changelog)" EDITOR="Lesta Studio" GAME_URL="https://en.wikipedia.org/wiki/World_of_Warships" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWNISSUES above. There are 2 shortcuts because this script does not force WineArch): POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
Dadu042 | Monday 24 June 2019 at 23:04 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageGame does now pass the login screen. Differences@@ -1,42 +1,54 @@ #!/bin/bash # Date : (2015-07-04) -# Last revision : (2019-05-23) +# Last revision : see changelog below # Wine version used : see below -# Distribution used to test : Xubuntu 19.04 x64 +# Distribution used to test : Kubuntu 19.04 x64 # Author : mimi89999 # Licence : GPLv3 # # CHANGELOG: -# [Dadu042] (2019-05-23) -# Clean up. Approve latests submits. -# [amazingfate] (2016-06-27) -# Add China server. # [mimi89999] (2015-07-04) # Initial write. +# [amazingfate] (2016-06-27) +# Add China server. +# (mauli] (2018-04-11) +# Fix Download links. +# [VictorLima] (2018-10-11) +# Fix North America Download link. Wine 1.7.55 -> 3.17 +# [Dadu042] (2019-05-23) +# Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 +# [Dadu042] (2019-06-24) +# Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 + +# KNOWN ISSUES: +# Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 +# 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' +# After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). +# Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="4.0.1" - +WINEVERSION="3.0.5" + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2571 - + POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999 (2015)" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" - + POL_SetupWindow_VMS "512" - + POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 - + #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" @@ -44,22 +56,22 @@ [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" - -# Useful ? Submitted by Mauli, 2018. -# [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" -# [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" -# [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" -# [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" - - + +# Useful ? Submitted by Mauli, 2018. +# [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" +# [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" +# [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" +# [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" + + cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" - + POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" - + # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" @@ -74,7 +86,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -88,7 +100,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -102,10 +114,16 @@ fi done /bin/rm $TFILE - -POL_Shortcut "WoWSLauncher.exe" "World Of Warships" "Game;StrategyGame;" + +POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "Game;StrategyGame;" + +# Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html - + +# Workaround (see KNOWNISSUES above): 2 shortcuts because this script does not force WineArch: +POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "Game;StrategyGame;" +POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "Game;StrategyGame;" + POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-04) # Last revision : see changelog below # Wine version used : see below # Distribution used to test : Kubuntu 19.04 x64 # Author : mimi89999 # Licence : GPLv3 # # CHANGELOG: # [mimi89999] (2015-07-04) # Initial write. # [amazingfate] (2016-06-27) # Add China server. # (mauli] (2018-04-11) # Fix Download links. # [VictorLima] (2018-10-11) # Fix North America Download link. Wine 1.7.55 -> 3.17 # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. Wine 1.7.55 -> 4.01 # [Dadu042] (2019-06-24) # Fix 'game does not launch after clicking Play'. Wine 4.0.1 -> 3.0.5 # KNOWN ISSUES: # Wine 3.0.5 and 4.0.1 24/06/2019. Game v0.8.4.0 # 'Bad exe format for: Games\World_of_Warships\bin64\WorldOfWarships64.exe.' # After the first window, then click the button Play, the game launcher crashes. Same if launched in 'safe mode' (little button on the right of Play). # Workaround : launch 'WorldOfWarships32.exe' instead of 'WoWSLauncher.exe' TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="3.0.5" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999 (2015)" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships (Launcher)" "Game;StrategyGame;" # Probable fix for those whose launcher is stuck at receiving updates: POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html # Workaround (see KNOWNISSUES above): 2 shortcuts because this script does not force WineArch: POL_Shortcut "WorldOfWarships32.exe" "World Of Warships (32 bits)" "Game;StrategyGame;" POL_Shortcut "WorldOfWarships64.exe" "World Of Warships (64 bits)" "Game;StrategyGame;" POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
Dadu042 | Thursday 23 May 2019 at 11:56 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageCleanup of the script, I will test, and will read https://forum.worldofwarships.eu/topic/84805-069-on-linux/?tab=comments#comment-1979102 Differences@@ -1,51 +1,65 @@ #!/bin/bash # Date : (2015-07-04) -# Last revision : (2015-12-01) -# Wine version used : 1.7.55 -# Distribution used to test : Linux Debian Stretch (9) x86_64 -# Kernel : 4.2.0-1-amd64 +# Last revision : (2019-05-23) +# Wine version used : see below +# Distribution used to test : Xubuntu 19.04 x64 # Author : mimi89999 # Licence : GPLv3 +# +# CHANGELOG: +# [Dadu042] (2019-05-23) +# Clean up. Approve latests submits. +# [amazingfate] (2016-06-27) +# Add China server. +# [mimi89999] (2015-07-04) +# Initial write. TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="1.7.55" - +WINEVERSION="4.0.1" + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2571 - + POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" - + +POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999 (2015)" "$PREFIX" + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" - + POL_SetupWindow_VMS "512" - + POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 - + #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" +# Useful ? Submitted by Mauli, 2018. +# [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" +# [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" +# [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" +# [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" + + cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" - + POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" - + # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" @@ -60,7 +74,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -74,7 +88,7 @@ fi done /bin/rm $TFILE - + OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" @@ -88,11 +102,10 @@ fi done /bin/rm $TFILE - -POL_Shortcut "WoWSLauncher.exe" "World Of Warships" + +POL_Shortcut "WoWSLauncher.exe" "World Of Warships" "Game;StrategyGame;" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html - + POL_SetupWindow_Close - -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2019-05-23) # Wine version used : see below # Distribution used to test : Xubuntu 19.04 x64 # Author : mimi89999 # Licence : GPLv3 # # CHANGELOG: # [Dadu042] (2019-05-23) # Clean up. Approve latests submits. # [amazingfate] (2016-06-27) # Add China server. # [mimi89999] (2015-07-04) # Initial write. TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="4.0.1" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999 (2015)" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" # Useful ? Submitted by Mauli, 2018. # [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" # [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" # [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" # [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" "Game;StrategyGame;" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 Replies |
VictorLima | Thursday 11 October 2018 at 17:08 |
VictorLima
|
WarningThis update has not been approved yet by the team. Differences@@ -9,7 +9,7 @@ TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="1.7.55" +WINEVERSION="3.17" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -32,7 +32,7 @@ #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +[ "$APP_ANSWER" = "North America" ] && DL_URL="https://cdn.discordapp.com/attachments/214552687323119616/328616628403044352/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="3.17" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="https://cdn.discordapp.com/attachments/214552687323119616/328616628403044352/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 Replies |
VictorLima | Monday 8 October 2018 at 3:46 |
VictorLima
|
MessageThis didn't work for me. I was able to get the installer to run by manually changing the "US Region" download path, and increasing the Wine version to 3.17 (the most recent version). It ran for an hour, and then "developed a critical error", crashed, and restarted from scratch. Running it again results in the same error. This program DOES NOT WORK with Wine. Replies |
thierrybo | Tuesday 25 September 2018 at 22:57 |
thierrybo
|
Messagehi, here is a (dirty) workaround to the downloading errors (even with up to date urls): - download the ** Download classic Launcher ** to ~/.PlayOnLinux/wineprefix/WorldOfWarships/drive_c/WoWS_internet_install_eu.exe - Open you file explorer to ~/.PlayOnLinux/ - delete "install" file - Run Playonlinux installer for WorfOfWarships and look at ~/.PlayOnLinux/ folder - As soon as a the new "install" file appears, stop the installation - Open the install file with your text editor - Change the line (near line 35) : #[ "$APP_ANSWER" = "<YOUR REGION>" ] && DL_URL=............. to: [ "$APP_ANSWER" = "<YOUR REGION>" ] && DL_URL="file:///home/<YOUR USER>/.PlayOnLinux/wineprefix/WorldOfWarships/drive_c/WoWS_internet_install_eu.exe" - Optionally, change the wine version from the very old 1.7.55 to a newer one (I use 3.13 personally) - Save the file - Continue the installation Replies |
mauli | Wednesday 11 April 2018 at 20:45 |
mauli
|
WarningThis update has not been approved yet by the team. Messagethe torrent downloader crashes from time to time, I can get a hand of this by limiting the download speed. I have attached a patch to fix the download links, as most people wont use python SimpleHTTPServer locally with host entries to work around the not working DNS / them turning off the old mirror. Differences@@ -32,10 +32,10 @@ #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +[ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.55" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="https://worldofwarships.com/en/game/download/" [ "$APP_ANSWER" = "Europe" ] && DL_URL="https://worldofwarships.eu/en/game/download/" [ "$APP_ANSWER" = "Russia" ] && DL_URL="https://worldofwarships.ru/ru/game/download/" [ "$APP_ANSWER" = "Asia" ] && DL_URL="https://worldofwarships.asia/en/game/download/" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 RepliesThursday 12 April 2018 at 17:07
Thursday 12 April 2018 at 17:08
|
dtanderson | Friday 12 January 2018 at 6:10 |
dtanderson
|
|
no_data_here | Wednesday 3 January 2018 at 4:57 |
no_data_here
|
MessageAfter a little while of being frustrated by crashes, I stumbled upon this in the WG forums https://forum.worldofwarships.eu/topic/84805-069-on-linux/?tab=comments#comment-1979102 Following the directions in it has corrected most issues, however the Inventory, Clan, and News functionalities are still nonfunctional. Replies |
CurlyMan | Tuesday 19 September 2017 at 0:12 |
CurlyMan
|
MessageHi guys! Once installed, change use wine 2.16 staging (the last release for me). Install directx11, install the video driver that fits your config, and d3dcompiler_43 (this is the part I found on a forum, no idea if it is really important or not). The game should then work. I have to play in ultra ultra low settings, nor the sea is not displayed (the boats float) which makes the aiming harder. This is due to my config I guess (core i3, GeForce610M (yes, I have an old piece of shit for computer)). The only problem except that is that the game crashed at the end of each game, stating that the Big World client encountered an unhandeled exception... I don't know if this comes from playonlinux since some other players on windows experienced the same thing, or so I read. Hope this was useful to you, and that someone more experimented will come up with a better solution! Enjoy! Replies |
mweATobf | Saturday 12 August 2017 at 8:24 |
mweATobf
|
MessageHi, This official updated installer by mimi89999 (date of creation?) didn't work since the WoWS download links are (still/again ??) wrong. The latest installer posted by cytomich still works for downloading. I attach my last playonlinux.log for WoWS 64bit, wine 2.0.2 install. Any hint how to go on? System: PlayOnLinux debugging tool (v4.2.12) Warning: This is a PlayOnLinux script logfile. It does not contain everything that happened in your program\'s virtual drive (wineprefix) Date: 08/11/17 18:20:54 > uname -a <---------------------- SNIP -------------------> playonlinux.log <---------------------- SNIP -------------------> [08/12/17 07:50:18] - Running wine-2.0.2 WorldOfWarships.exe (Working directory : /home/user/.PlayOnLinux/wineprefix/WorldOfWarships_64/drive_c/Games/World_of_Warships) ...
RepliesEdited by Dadu042 |
cytomich | Friday 12 May 2017 at 21:51 |
cytomich
|
WarningThis update has not been approved yet by the team. MessageHi. Differences@@ -1,3 +1,5 @@ + + #!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) @@ -32,10 +34,10 @@ #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.55" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl-wows-gc.wargaming.net/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl-wows-gc.wargaming.net/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl-wows-gc.wargaming.net/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl-wows-gc.wargaming.net/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 Replies |
Redchrome | Monday 21 November 2016 at 4:18 |
Redchrome
|
MessageI have this working. However, I first needed to get OpenGL working, which in my case involved installing the nVidia drivers from the nVidia site (http://www.nvidia.com/object/unix.html), rather than the Ubuntu packages unfortuately. Some roundabout description of that may be found here: When you install, install the base installer but do not choose the 'automatic updates' option. If you do, the installer will install, try to update, and then crash repeatedly as it downloads updates. Once you have the basic installer installed, then choose 'Configure' and set it to use Wine v1.9.23. Also, do Configuration->Display tab->GLSL Support=enabled Replies |
NewbieEnthusiast | Tuesday 13 September 2016 at 3:38 |
NewbieEnthusiast
|
|
amazingfate | Monday 27 June 2016 at 17:28 |
amazingfate
|
WarningThis update has not been approved yet by the team. Differences@@ -36,6 +36,7 @@ [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +[ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.55" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" [ "$APP_ANSWER" = "China" ] && DL_URL="http://wowsdn.kongzhong.com/official/wows.0.5.7.0_cn_setup.0570062111.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 RepliesMonday 27 June 2016 at 17:31
|
Deleted account | Thursday 26 May 2016 at 15:17 |
Deleted account
|
MessageNot possible to install on Ubuntu 14.04. The Size of the Installationwindow is 1x1px with no possibility to increase. Replies |
kodos | Tuesday 1 March 2016 at 0:33 |
kodos
|
MessageEverything is working but there is an "out of memory" error after playing a few games. With version 5.2.x I got this error only when closing the game (which was solved by installing vcrun2012), with patch 5.3.X I get this error again but while the game was running (either while starting a match or after I get back into port after a match was finished)
For windows users, reinstalling directx 9c solved the problem. For me the bug still exists no matter if I reinstall the game or reinstall components via winetricks (also tried winetricks directx9 instead of d3dx9
depugger shows only wine: Unhandled exception 0x40000015 in thread 44 at address 0xe840023:0x0272327c (thread 0044), starting debugger... & libpng warning: iCCP: known incorrect sRGB profile
PS: Linux Mint 17.3 64bit, Kernel 4.2.0-19generic I5 6600k, 16GB RAM, GTX660 (2GB VRAM) Replies |
NewbieEnthusiast | Monday 11 January 2016 at 13:10 |
NewbieEnthusiast
|
MessageHey guys, I have had little to no problems installing and running this (I followed the instructions found above) but when in-game, I have recently begun experiencing "stuck" keys and limited mouse-movement. In addition, the game seems to only recognize one input at a time (one key or a mouse click). I am unsure how to proceed and I also don't know if it is a problem with my hardware (I unplugged everything but the mouse and keyboard), with Wine or with POL. The main problem is the "stuck" keys. When navigating, if I use A or D for left and right, the game (or something else) keeps sending the A input, making me sail in circles. This is not as conductive to a successful match as one would believe and I'd like it to stop. If I tap A, ii often stops but whenever I use either key (A or D) again, the problem resurfaces. Note that it is always A that keeps repeating. I am starting to think it might be a system bug as I have experienced it while browsing (only once and I cannot reproduce). I can reproduce it every time in WoWS. RepliesThursday 26 May 2016 at 15:18
Tuesday 31 May 2016 at 14:35
Monday 11 July 2016 at 21:35
|
petch | Friday 4 December 2015 at 23:20 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_SetID Differences@@ -15,6 +15,7 @@ source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init +POL_SetupWindow_SetID 2571 POL_Debug_Init New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.55" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_SetupWindow_SetID 2571 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Tuesday 1 December 2015 at 17:10 |
mimi89999
|
WarningThis update has not been approved yet by the team. MessageThe mouse movements in full screen are limited, it's recommended to switch the game to windowed mode. To display the "Big race" map you will need to:
Differences@@ -15,7 +15,6 @@ source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init -POL_SetupWindow_SetID 2571 POL_Debug_Init New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-12-01) # Wine version used : 1.7.55 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.55" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_Shortcut_InsertBeforeWine "$TITLE" 'sed -i.bak -e "s@<launcher_transport>3</launcher_transport>@<launcher_transport>2</launcher_transport>@" "$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg"' # As in https://www.playonlinux.com/en/app-1592-World_Of_Tanks.html POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
mimi89999 | Saturday 7 November 2015 at 21:47 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2015-07-04) -# Last revision : (2015-10-21) -# Wine version used : 1.7.53 +# Last revision : (2015-11-07) +# Wine version used : 1.7.54 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 @@ -9,7 +9,7 @@ TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="1.7.53" +WINEVERSION="1.7.54" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -40,12 +40,53 @@ POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" -POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" - POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" +# Edit WoWSLauncher.cfg file +OLD="<launcher_transport>3" +NEW="<launcher_transport>2" +DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" +TFILE="/tmp/out.tmp.$$" +for f in $DPATH +do + if [ -f $f -a -r $f ]; then + sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" + else + echo "Error: Cannot read $f" + fi +done +/bin/rm $TFILE + +OLD="<display_seeding_mode>2" +NEW="<display_seeding_mode>0" +DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" +TFILE="/tmp/out.tmp.$$" +for f in $DPATH +do + if [ -f $f -a -r $f ]; then + sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" + else + echo "Error: Cannot read $f" + fi +done +/bin/rm $TFILE + +OLD="<display_seeding_mode>1" +NEW="<display_seeding_mode>0" +DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" +TFILE="/tmp/out.tmp.$$" +for f in $DPATH +do + if [ -f $f -a -r $f ]; then + sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" + else + echo "Error: Cannot read $f" + fi +done +/bin/rm $TFILE + POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-11-07) # Wine version used : 1.7.54 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.54" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" # Edit WoWSLauncher.cfg file OLD="<launcher_transport>3" NEW="<launcher_transport>2" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>2" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE OLD="<display_seeding_mode>1" NEW="<display_seeding_mode>0" DPATH="$WINEPREFIX/drive_c/Games/World_of_Warships/WoWSLauncher.cfg" TFILE="/tmp/out.tmp.$$" for f in $DPATH do if [ -f $f -a -r $f ]; then sed "s/$OLD/$NEW/g" "$f" > $TFILE && mv $TFILE "$f" else echo "Error: Cannot read $f" fi done /bin/rm $TFILE POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mistermark | Friday 30 October 2015 at 18:46 |
mistermark
|
MessageHad to do a fresh install but have been unable get the Launcher to Download and Install Patches in Linux when Torrents are Enabled. The old Launcher had a 'disable torrents' option but the new launcher does not have this feature at all (not even by tweaking config files). Tried every tweak and nothing worked and there were no information in logs for me to work off of.
The Fix: Installed the program on Windows. Launcher works fine there. On my Linux Box Created a Virutal Drive environment 64bit windows with dx9 and dx9 compiler (see script in this thread). Copied the 'Games' Directory from my Windows machine to the Linux Machine's Virtual C drive folder. Created shortcut to Game Executable in PlayOnLinux. Runs Great. RepliesSunday 1 November 2015 at 0:40
Sunday 8 November 2015 at 6:35
Sunday 8 November 2015 at 6:39
Friday 13 November 2015 at 12:06
|
Kantzur | Wednesday 28 October 2015 at 19:58 |
Kantzur
|
MessageWorld of Warships After patch 5.x i can play one round normaly. Next round if i coming near of islands the waterlevel go down, an ship fly in the air. I have try to start debug mode, but this frozen after i close the game. THX for help RepliesWednesday 28 October 2015 at 20:00
|
Krinski | Sunday 25 October 2015 at 0:57 |
Krinski
|
MessageThe game's laucher was updated to a new version and in this new laucher does not have how to disable the torrent mode what how you know, crash de laucher.The war of warplanes has de same problem.What should i do?
RepliesSunday 25 October 2015 at 1:54
Sunday 25 October 2015 at 15:52
|
Krinski | Saturday 24 October 2015 at 23:53 |
Krinski
|
MessageThe game's laucher was updated to a new version and in this new laucher does not have how to disable the torrent mode what how you know, crash de laucher.The war of warplanes has de same problem.What should i do?
Replies |
deri82 | Saturday 24 October 2015 at 16:48 |
deri82
|
MessageYou say that mouse movement is limited? Do you mean you cant turn 360 angles with mouse? Then it's most likely this bug 8854 (I am not sure was it this or another I couldnt find now) which is fixed in wine-staging. Replies |
mimi89999 | Saturday 24 October 2015 at 10:57 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -9,7 +9,7 @@ TITLE="World Of Warships" PREFIX="WorldOfWarships" -WINEVERSION="1.7.49" +WINEVERSION="1.7.53" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-10-21) # Wine version used : 1.7.53 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.53" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Wednesday 21 October 2015 at 17:07 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2015-07-04) -# Last revision : (2015-08-21) -# Wine version used : 1.7.49 -# Distribution used to test : Linux Debian Jessie 8.1 x86_64 -# Kernel : 3.16.0-4-amd64 +# Last revision : (2015-10-21) +# Wine version used : 1.7.53 +# Distribution used to test : Linux Debian Stretch (9) x86_64 +# Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-10-21) # Wine version used : 1.7.53 # Distribution used to test : Linux Debian Stretch (9) x86_64 # Kernel : 4.2.0-1-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesFriday 23 October 2015 at 23:48
Saturday 24 October 2015 at 23:55
|
IamDH4 | Friday 9 October 2015 at 2:22 |
IamDH4
|
MessageI was able to fix the Full-Screen mouse issue by using Wine 1.7.52-staging. I also used schotty's recomendations to get the game in fullscreen mode to begin with. I am now running mostly on high settings (some very high), with very acceptable framerates using an nVidia GTX 760 w/ propriatary drivers. RepliesFriday 9 October 2015 at 2:29
|
phocas | Saturday 5 September 2015 at 8:51 |
phocas
|
Messageall is fine with 1.7.49 version but you have an error from the wowS installer in case of warships major update like the 4.1 from early september => "not enough space on drive c" the update won't launch to pass that lock you have to erase all the files stored in you home /.PlayOnLinux/wineprefix/WorldOfWarships/drive_c/Games/World_of_Warships/Updates/ to free disk space these files are the previous updates stored there for P2P downloads
see you on the seas Replies |
deri82 | Monday 24 August 2015 at 23:20 |
deri82
|
MessageCould you try wine-staging version of wine? It could fix the limited mouse movement. Replies |
petch | Friday 21 August 2015 at 16:42 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_VMS statement (sets VRAM amount, warn of too low VRAM) Differences@@ -34,6 +34,8 @@ [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +POL_SetupWindow_VMS 512 + cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-08-08) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" POL_SetupWindow_VMS 512 cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Friday 21 August 2015 at 16:42 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2015-07-04) -# Last revision : (2015-08-08) +# Last revision : (2015-08-21) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 @@ -24,6 +24,8 @@ POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" +POL_SetupWindow_VMS "512" + POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-08-21) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_SetupWindow_VMS "512" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesFriday 21 August 2015 at 16:43
|
schotty | Friday 21 August 2015 at 15:24 |
schotty
|
MessageRuns ok, but a few things that I had to do for "Proper" functionality.
1)Set the VRAM in the bottle config 2)Set GLSL in the bottle config 3)For fullscreen setting to not crash upon setting it, I needed to set everything to low after choosing fullscreen to force a restart (and not crash), then once back in set the settings back up to high (and another restart), then disable Post Processing and set the graphics to Trilinear Filtering.
That aside (and frankly 1 & 2 I do anyway in most games anyhow) runs quite well. If I only had skill in this game I might be dangerous with my USS Kernel Panic :D Replies |
petch | Monday 10 August 2015 at 22:05 |
petch
|
WarningThis update has not been approved yet by the team. MessageSlighly simpler logic, since the script doesn't make use of $REGION beside deducing installer name Differences@@ -29,18 +29,19 @@ #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" && REGION="na" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" && REGION="eu" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" && REGION="ru" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" && REGION="asia" +[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" +INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" -POL_Wine start /unix "WoWS_internet_install_$REGION.exe" +POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-08-08) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" INSTALLER="${DL_URL##*/}" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesTuesday 11 August 2015 at 4:51
|
mimi89999 | Monday 10 August 2015 at 21:47 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -29,10 +29,10 @@ #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" -[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" -[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" -[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" -[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" +[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" && REGION="na" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" && REGION="eu" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" && REGION="ru" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" && REGION="asia" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" @@ -40,7 +40,7 @@ POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" -POL_Wine start /unix "WoWS_internet_install_eu.exe" +POL_Wine start /unix "WoWS_internet_install_$REGION.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-08-08) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" && REGION="na" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" && REGION="eu" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" && REGION="ru" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" && REGION="asia" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_$REGION.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Saturday 8 August 2015 at 11:23 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,13 +1,15 @@ #!/bin/bash -# Date : (2015-07-4) -# Last revision : (2015-07-20) -# Wine version used : 1.7.47 +# Date : (2015-07-04) +# Last revision : (2015-08-08) +# Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" +PREFIX="WorldOfWarships" +WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -16,18 +18,25 @@ POL_Debug_Init -POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" - -POL_Wine_SelectPrefix "WorldOfWarships" -POL_Wine_PrefixCreate "1.7.47" +POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 +#Select WoWS version +POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" +[ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" +[ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" +[ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" +[ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" + cd "$WINEPREFIX/drive_c" -POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" - +POL_Download "$DL_URL" + POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" @@ -37,5 +46,5 @@ POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close - -exit 0 \ No newline at end of file + +exit 0 New source code#!/bin/bash # Date : (2015-07-04) # Last revision : (2015-08-08) # Wine version used : 1.7.49 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" PREFIX="WorldOfWarships" WINEVERSION="1.7.49" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 #Select WoWS version POL_SetupWindow_menu "$(eval_gettext 'Which region version of World Of Warships would you like to install? Note: Korea is not supported yet.')" "$TITLE" "North America~Europe~Russia~Asia" "~" [ "$APP_ANSWER" = "North America" ] && DL_URL="http://dl.wargaming.net/wows_a/na/files/MDcyICBcdT/WoWS_internet_install_na.exe" [ "$APP_ANSWER" = "Europe" ] && DL_URL="http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" [ "$APP_ANSWER" = "Russia" ] && DL_URL="http://dl.wargaming.net/wows_a/ru/files/xIFx1MTA3O/WoWS_internet_install_ru.exe" [ "$APP_ANSWER" = "Asia" ] && DL_URL="http://dl.wargaming.net/wows_a/asia/files/Kg9cc1LM/WoWS_internet_install_asia.exe" cd "$WINEPREFIX/drive_c" POL_Download "$DL_URL" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Friday 31 July 2015 at 17:04 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-20) -# Wine version used : 1.7.47 +# Wine version used : 1.7.48 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 @@ -19,7 +19,7 @@ POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" -POL_Wine_PrefixCreate "1.7.47" +POL_Wine_PrefixCreate "1.7.48" Set_OS "win7" POL_Call POL_Install_d3dx9 New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-20) # Wine version used : 1.7.48 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.48" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Monday 20 July 2015 at 15:34 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2015-07-4) -# Last revision : (2015-07-4) -# Wine version used : 1.7.38 +# Last revision : (2015-07-20) +# Wine version used : 1.7.47 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 @@ -19,7 +19,7 @@ POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" -POL_Wine_PrefixCreate "1.7.46" +POL_Wine_PrefixCreate "1.7.47" Set_OS "win7" POL_Call POL_Install_d3dx9 New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-20) # Wine version used : 1.7.47 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.47" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Monday 20 July 2015 at 15:32 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,41 +1,41 @@ #!/bin/bash # Date : (2015-07-4) -# Last revision : (2015-07-4) -# Wine version used : 1.7.38 +# Last revision : (2015-07-20) +# Wine version used : 1.7.47 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 - + TITLE="World Of Warships" - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + POL_SetupWindow_Init - + POL_Debug_Init - + POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" - + POL_Wine_SelectPrefix "WorldOfWarships" -POL_Wine_PrefixCreate "1.7.46" +POL_Wine_PrefixCreate "1.7.47" Set_OS "win7" - + POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 - + cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" - + POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" - + POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" - + POL_Shortcut "WoWSLauncher.exe" "World Of Warships" - + POL_SetupWindow_Close - + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-20) # Wine version used : 1.7.47 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.47" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesMonday 20 July 2015 at 15:36
|
mimi89999 | Wednesday 8 July 2015 at 18:30 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2015-07-4) -# Last revision : (2015-07-4) +# Last revision : (2015-07-8) # Wine version used : 1.7.38 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 @@ -21,6 +21,7 @@ POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.46" Set_OS "win7" +POL_Wine_Direct3D "UseGLSL" "enabled" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-8) # Wine version used : 1.7.38 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.46" Set_OS "win7" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesWednesday 8 July 2015 at 18:53
Wednesday 8 July 2015 at 19:06
Wednesday 8 July 2015 at 19:08
|
mimi89999 | Wednesday 8 July 2015 at 14:08 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -19,6 +19,7 @@ POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "1.7.46" Set_OS "win7" New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-4) # Wine version used : 1.7.38 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_System_SetArch "x86" POL_Wine_PrefixCreate "1.7.46" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 RepliesWednesday 8 July 2015 at 14:18
|
mimi89999 | Sunday 5 July 2015 at 9:23 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,41 @@ +#!/bin/bash +# Date : (2015-07-4) +# Last revision : (2015-07-4) +# Wine version used : 1.7.38 +# Distribution used to test : Linux Debian Jessie 8.1 x86_64 +# Kernel : 3.16.0-4-amd64 +# Author : mimi89999 +# Licence : GPLv3 + +TITLE="World Of Warships" + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" + +POL_Wine_SelectPrefix "WorldOfWarships" +POL_Wine_PrefixCreate "1.7.46" +Set_OS "win7" + +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dcompiler_43 + +cd "$WINEPREFIX/drive_c" +POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" + +POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" + +POL_Wine_WaitBefore "World Of Warships" +POL_Wine start /unix "WoWS_internet_install_eu.exe" +POL_Wine_WaitExit "World Of Warships" + +POL_Shortcut "WoWSLauncher.exe" "World Of Warships" + +POL_SetupWindow_Close + +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-4) # Wine version used : 1.7.38 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 TITLE="World Of Warships" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.46" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "$(eval_gettext 'Please Un-check the box: "Allow Torrent" in World Of Warships dowloader.')" "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
mimi89999 | Saturday 4 July 2015 at 22:20 |
mimi89999
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,41 @@ +#!/bin/bash +# Date : (2015-07-4) +# Last revision : (2015-07-4) +# Wine version used : 1.7.38 +# Distribution used to test : Linux Debian Jessie 8.1 x86_64 +# Kernel : 3.16.0-4-amd64 +# Author : mimi89999 +# Licence : GPLv3 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +POL_SetupWindow_Init + +POL_Debug_Init + +POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" + +POL_Wine_SelectPrefix "WorldOfWarships" +POL_Wine_PrefixCreate "1.7.38" +Set_OS "win7" + +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dcompiler_43 + +POL_SetupWindow_VMS "$GAME_VMS" + +cd "$WINEPREFIX/drive_c" +POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" + +POL_SetupWindow_message "Please Un-check the box: 'Allow Torrent' in World Of Warships dowloader." "$TITLE" + +POL_Wine_WaitBefore "World Of Warships" +POL_Wine start /unix "WoWS_internet_install_eu.exe" +POL_Wine_WaitExit "World Of Warships" + +POL_Shortcut "WoWSLauncher.exe" "World Of Warships" + +POL_SetupWindow_Close + +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-07-4) # Last revision : (2015-07-4) # Wine version used : 1.7.38 # Distribution used to test : Linux Debian Jessie 8.1 x86_64 # Kernel : 3.16.0-4-amd64 # Author : mimi89999 # Licence : GPLv3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "World Of Warships" "BigWorld Technology™" "http://worldofwarships.eu/" "mimi89999" "WorldOfWarships" POL_Wine_SelectPrefix "WorldOfWarships" POL_Wine_PrefixCreate "1.7.38" Set_OS "win7" POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_SetupWindow_VMS "$GAME_VMS" cd "$WINEPREFIX/drive_c" POL_Download "http://dl.wargaming.net/wows_a/eu/files/ilcClx1YzB/WoWS_internet_install_eu.exe" POL_SetupWindow_message "Please Un-check the box: 'Allow Torrent' in World Of Warships dowloader." "$TITLE" POL_Wine_WaitBefore "World Of Warships" POL_Wine start /unix "WoWS_internet_install_eu.exe" POL_Wine_WaitExit "World Of Warships" POL_Shortcut "WoWSLauncher.exe" "World Of Warships" POL_SetupWindow_Close exit 0 Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com