Neverwinter (Online)
Informations
Creator | Message |
---|---|
Ronin DUSETTE
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks11 9 DescriptionMMORPG game first released in 2013. The full name is 'Dungeons & Dragons NeverWinter'. Wikipedia, Website. Note:
This can help: test reports hosted on appdb.winehq.org ScreenshotsSource code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20.1 Cinnamon # Game Version tested : NW.131.20210906a.13 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. # 2021-09-18 Dae: restore old link # 2021-09-19 Yaotl: Script changed # 2021-09-23 Yaotl: dll fix, Update Wine 6.0.1(Stable) > 6.17(Development) # 2021-10-10 Yaotl: Script clean again [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.17" DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dcompiler_46 POL_Call POL_Install_d3dcompiler_47 POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_physx POL_Call POL_Install_vcrun2019 POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Yaotl | Tuesday 12 October 2021 at 12:52 |
Yaotl
|
InformationThis update has been approved by the team. Differences@@ -2,7 +2,7 @@ # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20.1 Cinnamon -# Game Version tested : NW.125.20210219a.20 +# Game Version tested : NW.131.20210906a.13 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 @@ -15,16 +15,19 @@ # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. - +# 2021-09-18 Dae: restore old link +# 2021-09-19 Yaotl: Script changed +# 2021-09-23 Yaotl: dll fix, Update Wine 6.0.1(Stable) > 6.17(Development) +# 2021-10-10 Yaotl: Script clean again [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" -WINEVERSION="6.0.1" -DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" -MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" +WINEVERSION="6.17" +DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" +MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init @@ -37,18 +40,21 @@ # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." -# Launcher Download -POL_System_TmpCreate "$PREFIX" -cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_d3dcompiler_46 +POL_Call POL_Install_d3dcompiler_47 +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_physx POL_Call POL_Install_vcrun2019 +POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} @@ -61,12 +67,14 @@ # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" -7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration +POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20.1 Cinnamon # Game Version tested : NW.131.20210906a.13 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. # 2021-09-18 Dae: restore old link # 2021-09-19 Yaotl: Script changed # 2021-09-23 Yaotl: dll fix, Update Wine 6.0.1(Stable) > 6.17(Development) # 2021-10-10 Yaotl: Script clean again [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.17" DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dcompiler_46 POL_Call POL_Install_d3dcompiler_47 POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_physx POL_Call POL_Install_vcrun2019 POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 13 October 2021 at 17:54
Edited by Yaotl |
dae | Friday 24 September 2021 at 21:50 |
dae
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/usr/bin/env playonlinux-bash -# Date : (2015-04-21) +# Date : (2021-09-19) # Last revision : see changelog -# Distribution used to test : Linux Mint 20.1 Cinnamon -# Game Version tested : NW.125.20210219a.20 -# Author : Ronin Dusette +# Distribution used to test : Lubuntu18.04.05x64 +# Game Version tested : NW.131.20210803b.24 +# Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # @@ -15,60 +15,66 @@ # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. +# 2021-09-18 Dae, restore old link +# 2021-09-19 Script changed by yaotl - +#2021-09-23 by @Icnoyotl#9122 dll fix, wine 6.17 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" -WINEVERSION="6.0.1" -DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" -MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" - +WINEVERSION="6.17" +DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" +MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" + #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" - + # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." - -# Launcher Download -POL_System_TmpCreate "$PREFIX" -cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - + # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Dependencies POL_Call POL_Install_vcrun2019 +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_d3dcompiler_46 +POL_Call POL_Install_d3dcompiler_47 +POL_Call POL_Install_physx +POL_Call POL_Install_xinput +POL_Call POL_Install_corefonts + # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} - + POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" - -# Set Graphic Card informations keys for wine -POL_Call POL_Install_VideoDriver - + # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" -7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" - +cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" - + # Game Configuration +POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir - + if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German @@ -82,26 +88,76 @@ else # English lang="1033" fi - + cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 - + [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" - + if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then - POL_Call POL_Install_DXVK + POL_SetupWindow_message "Warning: DXVK software can not work without Vulkan driver (on your OS), we can not automate this." "$TITLE" + + DXVK_VERSION="1.9.2" + + # Downloading DXVK files + POL_Download_Resource "https://github.com/doitsujin/dxvk/releases/download/v$DXVK_VERSION/dxvk-$DXVK_VERSION.tar.gz" "74c54653ed2fda08b20ad744b87150b3" + + # Installing DLL + POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing DXVK files...')" "$TITLE" + + cd "$WINEPREFIX/drive_c/windows/temp" + + tar -xvzf "$POL_USER_ROOT/ressources/dxvk-$DXVK_VERSION.tar.gz" + + if [ "$POL_ARCH" == "amd64" ]; then + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/syswow64" + + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" + else + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" + fi + + # Overriding dlls + POL_Debug_Message "Overriding DirectX 9, 10, 11 DLLs" + + POL_Call POL_Function_OverrideDLL "native" "d3d9" + POL_Call POL_Function_OverrideDLL "native" "d3d10" + POL_Call POL_Function_OverrideDLL "native" "d3d10_1" + POL_Call POL_Function_OverrideDLL "native" "d3d10core" + POL_Call POL_Function_OverrideDLL "native" "d3d11" + POL_Call POL_Function_OverrideDLL "native" "dxgi" fi fi +# Set Graphic Card informations keys for wine +POL_Call POL_Install_VideoDriver + # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 + + New source code#!/usr/bin/env playonlinux-bash # Date : (2021-09-19) # Last revision : see changelog # Distribution used to test : Lubuntu18.04.05x64 # Game Version tested : NW.131.20210803b.24 # Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. # 2021-09-18 Dae, restore old link # 2021-09-19 Script changed by yaotl #2021-09-23 by @Icnoyotl#9122 dll fix, wine 6.17 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.17" DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_d3dcompiler_46 POL_Call POL_Install_d3dcompiler_47 POL_Call POL_Install_physx POL_Call POL_Install_xinput POL_Call POL_Install_corefonts # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_SetupWindow_message "Warning: DXVK software can not work without Vulkan driver (on your OS), we can not automate this." "$TITLE" DXVK_VERSION="1.9.2" # Downloading DXVK files POL_Download_Resource "https://github.com/doitsujin/dxvk/releases/download/v$DXVK_VERSION/dxvk-$DXVK_VERSION.tar.gz" "74c54653ed2fda08b20ad744b87150b3" # Installing DLL POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing DXVK files...')" "$TITLE" cd "$WINEPREFIX/drive_c/windows/temp" tar -xvzf "$POL_USER_ROOT/ressources/dxvk-$DXVK_VERSION.tar.gz" if [ "$POL_ARCH" == "amd64" ]; then cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x64/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" else cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/dxvk-$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Debug_Message "Overriding DirectX 9, 10, 11 DLLs" POL_Call POL_Function_OverrideDLL "native" "d3d9" POL_Call POL_Function_OverrideDLL "native" "d3d10" POL_Call POL_Function_OverrideDLL "native" "d3d10_1" POL_Call POL_Function_OverrideDLL "native" "d3d10core" POL_Call POL_Function_OverrideDLL "native" "d3d11" POL_Call POL_Function_OverrideDLL "native" "dxgi" fi fi # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 24 September 2021 at 21:51
|
Yaotl | Sunday 19 September 2021 at 15:51 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/usr/bin/env playonlinux-bash -# Date : (2015-04-21) +# Date : (2021-09-19) # Last revision : see changelog -# Distribution used to test : Linux Mint 20.1 Cinnamon -# Game Version tested : NW.125.20210219a.20 -# Author : Ronin Dusette +# Distribution used to test : Lubuntu18.04.05x64 +# Game Version tested : NW.131.20210803b.24 +# Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # @@ -15,7 +15,8 @@ # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. - +# 2021-09-18 Dae, restore old link +# 2021-09-19 Script changed [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -23,8 +24,8 @@ TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0.1" -DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" -MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" +DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" +MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init @@ -37,11 +38,6 @@ # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." -# Launcher Download -POL_System_TmpCreate "$PREFIX" -cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" @@ -61,12 +57,14 @@ # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" -7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration +POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English New source code#!/usr/bin/env playonlinux-bash # Date : (2021-09-19) # Last revision : see changelog # Distribution used to test : Lubuntu18.04.05x64 # Game Version tested : NW.131.20210803b.24 # Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. # 2021-09-18 Dae, restore old link # 2021-09-19 Script changed [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0.1" DOWNLOAD_URL="http://download.perfectworld.com/nw/launcher/Neverwinter.exe" MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 19 September 2021 at 16:21
Sunday 19 September 2021 at 19:22
Sunday 19 September 2021 at 19:51
Monday 20 September 2021 at 1:13
Edited by Yaotl |
dae | Saturday 18 September 2021 at 20:54 |
dae
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/usr/bin/env playonlinux-bash -# Date : (2015-04-21) +# Date : (2021-09-18) # Last revision : see changelog -# Distribution used to test : Linux Mint 20.1 Cinnamon -# Game Version tested : NW.125.20210219a.20 -# Author : Ronin Dusette +# Distribution used to test : Lubuntu18.04.05x64 +# Game Version tested : NW.131.20210803b.24 +# Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # @@ -15,7 +15,7 @@ # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. - +# 2021-09-18 Dae, restore old link [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -23,8 +23,8 @@ TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0.1" -DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" -MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" +DOWNLOAD_URL="https://download.perfectworld.com/nw/launcher/Neverwinter.exe" +MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init @@ -40,7 +40,7 @@ # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" +#POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" New source code#!/usr/bin/env playonlinux-bash # Date : (2021-09-18) # Last revision : see changelog # Distribution used to test : Lubuntu18.04.05x64 # Game Version tested : NW.131.20210803b.24 # Author : Ronin Dusette + Dae#5125 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. # 2021-09-18 Dae, restore old link [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0.1" DOWNLOAD_URL="https://download.perfectworld.com/nw/launcher/Neverwinter.exe" MD5_CHECKSUM="7bf87d6886bef4b278895fa4d85d50d0" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" #POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by dae |
Yaotl | Tuesday 15 June 2021 at 23:25 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -14,6 +14,7 @@ # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. +# 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. [ "$PLAYONLINUX" = "" ] && exit 0 @@ -21,9 +22,9 @@ TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" -WINEVERSION="6.0" -DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/Neverwinter.7z" -MD5_CHECKSUM="e22149dfbe97956a7eb5a5273b2e0104" +WINEVERSION="6.0.1" +DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" +MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" #Initialization POL_SetupWindow_Init @@ -46,6 +47,9 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" +# Dependencies +POL_Call POL_Install_vcrun2019 + # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} @@ -65,23 +69,18 @@ # Game Configuration cd $POL_System_TmpDir -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" -if [ "$APP_ANSWER" = "English" ]; then +if [ "$POL_LANG" = "en" ]; then # English lang="1033" -elif [ "$APP_ANSWER" = "Deutsch" ]; then +elif [ "$POL_LANG" = "de" ]; then # German lang="1031" -elif [ "$APP_ANSWER" = "Français" ]; then +elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" -elif [ "$APP_ANSWER" = "Italiano" ]; then +elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" -elif [ "$APP_ANSWER" = "Russian" ]; then +elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" -elif [ "$APP_ANSWER" = "Polski" ]; then - lang="1045" -elif [ "$APP_ANSWER" = "Türkçe" ]; then - lang="1055" -elif [ "$APP_ANSWER" = "Portugués" ]; then - lang="1046" +else # English + lang="1033" fi cat << EOF > "lang.reg" @@ -92,58 +91,14 @@ "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF - POL_Wine regedit "lang.reg" - -POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "CoreFonts~DXVK_181" "~" -if [ "$(echo $APP_ANSWER | grep -o "CoreFonts")" != "" ] -then - POL_Call POL_Install_corefonts -fi -###################################################################################################################################################### -if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] -then - # based on: https://www.playonlinux.com/en/app-4346-POL_Install_DXVK_181.html - POL_SetupWindow_message "Warning: DXVK software can not work without Vulkan driver (on your OS), we can not automate this." "$TITLE" - - DXVK_VERSION="dxvk-1.8.1" - - # Downloading DXVK files - POL_Download_Resource "https://github.com/doitsujin/dxvk/releases/download/v1.8.1/$DXVK_VERSION.tar.gz" "3f2c50f248b5505c6cf071ca48fc5378" - - # Installing DLL - POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing DXVK files...')" "$TITLE" - - cd "$WINEPREFIX"/drive_c/windows/temp - - tar -xvzf "$POL_USER_ROOT"/ressources/$DXVK_VERSION.tar.gz - - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/syswow64" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/syswow64" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/syswow64" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/syswow64" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/syswow64" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/syswow64" - - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" - cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" - - # Overriding dlls - POL_Debug_Message "Overriding DirectX 9, 10, 11 DLLs" - - POL_Call POL_Function_OverrideDLL "native" "d3d9" - POL_Call POL_Function_OverrideDLL "native" "d3d10" - POL_Call POL_Function_OverrideDLL "native" "d3d10_1" - POL_Call POL_Function_OverrideDLL "native" "d3d10core" - POL_Call POL_Function_OverrideDLL "native" "d3d11" - POL_Call POL_Function_OverrideDLL "native" "dxgi" +if [ "$POL_OS" = "Linux" ]; then + POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" + if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then + POL_Call POL_Install_DXVK + fi fi -###################################################################################################################################################### # Cleanup POL_System_TmpDelete New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20.1 Cinnamon # Game Version tested : NW.125.20210219a.20 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. # 2021-06-15 Yaotl: Update Wine 6.0 > 6.0.1; Download url updated; other small script changes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0.1" DOWNLOAD_URL="https://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_05_21_17_59/Neverwinter.7z" MD5_CHECKSUM="522f88185d1dcedf8fe7411db8e00813" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_vcrun2019 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir if [ "$POL_LANG" = "en" ]; then # English lang="1033" elif [ "$POL_LANG" = "de" ]; then # German lang="1031" elif [ "$POL_LANG" = "fr" ]; then # French lang="1036" elif [ "$POL_LANG" = "it" ]; then # Italian lang="1040" elif [ "$POL_LANG" = "ru" ]; then # Russian lang="1049" else # English lang="1033" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" if [ "$POL_OS" = "Linux" ]; then POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "DXVK" "~" if [ "$(echo $APP_ANSWER | grep -o "DXVK")" != "" ]; then POL_Call POL_Install_DXVK fi fi # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yaotl | Monday 12 April 2021 at 9:09 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,8 +1,8 @@ #!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog -# Distribution used to test : Linux Mint 20 Cinnamon -# Game Version tested : NW.122.20200708b.4 +# Distribution used to test : Linux Mint 20.1 Cinnamon +# Game Version tested : NW.125.20210219a.20 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 @@ -12,6 +12,8 @@ # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput +# 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 +# 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. [ "$PLAYONLINUX" = "" ] && exit 0 @@ -19,9 +21,9 @@ TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" -WINEVERSION="5.0.2" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" -MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" +WINEVERSION="6.0" +DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/Neverwinter.7z" +MD5_CHECKSUM="e22149dfbe97956a7eb5a5273b2e0104" #Initialization POL_SetupWindow_Init @@ -44,13 +46,9 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" -# Dependencies -POL_Call POL_Install_corefonts - # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} -POL_Wine_DirectInput "MouseWarpOverride" "force" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" @@ -97,6 +95,56 @@ POL_Wine regedit "lang.reg" + +POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "CoreFonts~DXVK_181" "~" +if [ "$(echo $APP_ANSWER | grep -o "CoreFonts")" != "" ] +then + POL_Call POL_Install_corefonts +fi +###################################################################################################################################################### +if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] +then + # based on: https://www.playonlinux.com/en/app-4346-POL_Install_DXVK_181.html + POL_SetupWindow_message "Warning: DXVK software can not work without Vulkan driver (on your OS), we can not automate this." "$TITLE" + + DXVK_VERSION="dxvk-1.8.1" + + # Downloading DXVK files + POL_Download_Resource "https://github.com/doitsujin/dxvk/releases/download/v1.8.1/$DXVK_VERSION.tar.gz" "3f2c50f248b5505c6cf071ca48fc5378" + + # Installing DLL + POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing DXVK files...')" "$TITLE" + + cd "$WINEPREFIX"/drive_c/windows/temp + + tar -xvzf "$POL_USER_ROOT"/ressources/$DXVK_VERSION.tar.gz + + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/syswow64" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/syswow64" + + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" + cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" + + # Overriding dlls + POL_Debug_Message "Overriding DirectX 9, 10, 11 DLLs" + + POL_Call POL_Function_OverrideDLL "native" "d3d9" + POL_Call POL_Function_OverrideDLL "native" "d3d10" + POL_Call POL_Function_OverrideDLL "native" "d3d10_1" + POL_Call POL_Function_OverrideDLL "native" "d3d10core" + POL_Call POL_Function_OverrideDLL "native" "d3d11" + POL_Call POL_Function_OverrideDLL "native" "dxgi" +fi +###################################################################################################################################################### + # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20.1 Cinnamon # Game Version tested : NW.125.20210219a.20 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput # 2020-09-30 Dadu042: Update Wine 5.0.1 > 5.0.2 # 2021-04-12 Yaotl: Update Wine 5.0.1 > 6.0; remove Mouse DirectInput; DXVK_181 installation option added; Download url updated. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="6.0" DOWNLOAD_URL="http://yaotl.heliohost.us/resources/setups/$PREFIX/CL_2021_03_22_18_15/Neverwinter.7z" MD5_CHECKSUM="e22149dfbe97956a7eb5a5273b2e0104" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ]; then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="1031" elif [ "$APP_ANSWER" = "Français" ]; then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ]; then lang="1040" elif [ "$APP_ANSWER" = "Russian" ]; then lang="1049" elif [ "$APP_ANSWER" = "Polski" ]; then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ]; then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ]; then lang="1046" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" POL_SetupWindow_checkbox_list "Optimal components:" "$TITLE" "CoreFonts~DXVK_181" "~" if [ "$(echo $APP_ANSWER | grep -o "CoreFonts")" != "" ] then POL_Call POL_Install_corefonts fi ###################################################################################################################################################### if [ "$(echo $APP_ANSWER | grep -o "DXVK_181")" != "" ] then # based on: https://www.playonlinux.com/en/app-4346-POL_Install_DXVK_181.html POL_SetupWindow_message "Warning: DXVK software can not work without Vulkan driver (on your OS), we can not automate this." "$TITLE" DXVK_VERSION="dxvk-1.8.1" # Downloading DXVK files POL_Download_Resource "https://github.com/doitsujin/dxvk/releases/download/v1.8.1/$DXVK_VERSION.tar.gz" "3f2c50f248b5505c6cf071ca48fc5378" # Installing DLL POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing DXVK files...')" "$TITLE" cd "$WINEPREFIX"/drive_c/windows/temp tar -xvzf "$POL_USER_ROOT"/ressources/$DXVK_VERSION.tar.gz cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d9.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d10core.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/d3d11.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x32/dxgi.dll" "$WINEPREFIX/drive_c/windows/syswow64" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d9.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10_1.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d10core.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/d3d11.dll" "$WINEPREFIX/drive_c/windows/system32" cp -f "$WINEPREFIX/drive_c/windows/temp/$DXVK_VERSION/x64/dxgi.dll" "$WINEPREFIX/drive_c/windows/system32" # Overriding dlls POL_Debug_Message "Overriding DirectX 9, 10, 11 DLLs" POL_Call POL_Function_OverrideDLL "native" "d3d9" POL_Call POL_Function_OverrideDLL "native" "d3d10" POL_Call POL_Function_OverrideDLL "native" "d3d10_1" POL_Call POL_Function_OverrideDLL "native" "d3d10core" POL_Call POL_Function_OverrideDLL "native" "d3d11" POL_Call POL_Function_OverrideDLL "native" "dxgi" fi ###################################################################################################################################################### # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 12 April 2021 at 22:47
Tuesday 13 April 2021 at 1:06
Edited by Yaotl |
Dadu042 | Wednesday 30 September 2020 at 20:26 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageWine 5.0.1 -> 5.0.2 Differences@@ -19,7 +19,7 @@ TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" -WINEVERSION="5.0.1" +WINEVERSION="5.0.2" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20 Cinnamon # Game Version tested : NW.122.20200708b.4 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="5.0.2" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_DirectInput "MouseWarpOverride" "force" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ]; then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="1031" elif [ "$APP_ANSWER" = "Français" ]; then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ]; then lang="1040" elif [ "$APP_ANSWER" = "Russian" ]; then lang="1049" elif [ "$APP_ANSWER" = "Polski" ]; then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ]; then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ]; then lang="1046" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yaotl | Friday 31 July 2020 at 7:12 |
Yaotl
|
WarningThis update has not been approved yet by the team. MessageThis makes it run more smoothly for me than on Windows 10. Differences@@ -1,9 +1,9 @@ #!/usr/bin/env playonlinux-bash # Date : (2015-04-21) -# Last revision : (2020-07-10 18-25 CEST) +# Last revision : see changelog # Distribution used to test : Linux Mint 20 Cinnamon -# Game Version tested : NW.120.20200106a.23 -# Author : Ronin Dusette, Yaotl, Dadu042 +# Game Version tested : NW.122.20200708b.4 +# Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # @@ -11,6 +11,7 @@ # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. +# 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput [ "$PLAYONLINUX" = "" ] && exit 0 @@ -49,6 +50,10 @@ # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} +POL_Wine_DirectInput "MouseWarpOverride" "force" +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" + # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : see changelog # Distribution used to test : Linux Mint 20 Cinnamon # Game Version tested : NW.122.20200708b.4 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. # 2020-07-31 Yaotl: Enable UseGLSL & Enable OpenGL; Add set Mouse DirectInput [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="5.0.1" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} POL_Wine_DirectInput "MouseWarpOverride" "force" POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ]; then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="1031" elif [ "$APP_ANSWER" = "Français" ]; then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ]; then lang="1040" elif [ "$APP_ANSWER" = "Russian" ]; then lang="1049" elif [ "$APP_ANSWER" = "Polski" ]; then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ]; then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ]; then lang="1046" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 31 July 2020 at 12:20
Wednesday 30 September 2020 at 18:36
Wednesday 30 September 2020 at 18:55
Wednesday 30 September 2020 at 20:25
|
Yaotl | Friday 10 July 2020 at 21:39 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/usr/bin/env playonlinux-bash # Date : (2015-04-21) -# Last revision : (2020-02-10 20-45) -# Distribution used to test : Linux Mint 19.3 Cinnamon - 64-bit +# Last revision : (2020-07-10 18-25 CEST) +# Distribution used to test : Linux Mint 20 Cinnamon # Game Version tested : NW.120.20200106a.23 # Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 @@ -10,19 +10,19 @@ # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. +# 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -PREFIX="NeverwinterOnline" TITLE="Neverwinter Online" -WINEVERSION="4.0.3" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_11_01_14_37/Neverwinter.exe" -MD5_CHECKSUM="64786edb81fcb9cee4b42e3c20672fd5" +PREFIX="NeverwinterOnline" +WINEVERSION="5.0.1" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" +MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" #Initialization -#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init @@ -33,6 +33,11 @@ # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." +# Launcher Download +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" @@ -40,8 +45,6 @@ # Dependencies POL_Call POL_Install_corefonts -POL_Call POL_Install_dinput8 -POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} @@ -49,19 +52,14 @@ # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver -# Configuration -Set_OS "win10" - # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" -cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" +7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration -POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" @@ -83,7 +81,7 @@ lang="1046" fi -cat << EOF > "lang.reg" +cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : (2020-07-10 18-25 CEST) # Distribution used to test : Linux Mint 20 Cinnamon # Game Version tested : NW.120.20200106a.23 # Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. # 2020-07-10 Yaotl: Update Wine 4.0.3 > 5.0.1; Small script updates. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Neverwinter Online" PREFIX="NeverwinterOnline" WINEVERSION="5.0.1" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2020_04_15_16_50/Neverwinter.7z" MD5_CHECKSUM="4ae46e863c2092e8c6494fa2c04ebb25" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Launcher Download POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" 7z e "$POL_System_TmpDir/Neverwinter.7z" -o"$WINEPREFIX/drive_c/Program Files/Neverwinter Online" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ]; then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="1031" elif [ "$APP_ANSWER" = "Français" ]; then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ]; then lang="1040" elif [ "$APP_ANSWER" = "Russian" ]; then lang="1049" elif [ "$APP_ANSWER" = "Polski" ]; then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ]; then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ]; then lang="1046" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesFriday 10 July 2020 at 22:17
|
Yaotl | Tuesday 11 February 2020 at 19:08 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,27 +1,28 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) -# Last revision : (2019-06-27 21-41) -# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit -# Game Version tested : NW.110.20190519a.28 +# Last revision : (2020-02-10 20-45) +# Distribution used to test : Linux Mint 19.3 Cinnamon - 64-bit +# Game Version tested : NW.120.20200106a.23 # Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: -# 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. +# 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. +# 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" -WINEVERSION="4.0.1" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Neverwinter.exe" -MD5_CHECKSUM="56d9dc0c62c874699b3ad0afef99d98c" - +WINEVERSION="4.0.3" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_11_01_14_37/Neverwinter.exe" +MD5_CHECKSUM="64786edb81fcb9cee4b42e3c20672fd5" + #Initialization -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" +#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init @@ -29,70 +30,72 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" -# Because POL v4.2.12 only support Wine 4.0 maximum as of 2019-05-20. +# Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Dependencies POL_Call POL_Install_corefonts -POL_Call POL_Install_d3dx9 -POL_Call POL_Install_d3dx10 -POL_Call POL_Install_d3dx11 - -# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia). -POL_Call POL_Install_VideoDriver +POL_Call POL_Install_dinput8 +POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} - + +# Set Graphic Card informations keys for wine +POL_Call POL_Install_VideoDriver + # Configuration Set_OS "win10" - + # Installation -mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - + # Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;AdventureGame;" - +POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" + # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir - + POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" -if [ "$APP_ANSWER" = "English" ] - then lang="1033" -elif [ "$APP_ANSWER" = "Deutsch" ] - then lang="1031" -elif [ "$APP_ANSWER" = "Français" ] - then lang="1036" -elif [ "$APP_ANSWER" = "Italiano" ] - then lang="1040" -elif [ "$APP_ANSWER" = "Russian" ] - then lang="1049" -elif [ "$APP_ANSWER" = "Polski" ] - then lang="1045" -elif [ "$APP_ANSWER" = "Türkçe" ] - then lang="1055" -elif [ "$APP_ANSWER" = "Portugués" ] - then lang="1046" +if [ "$APP_ANSWER" = "English" ]; then + lang="1033" +elif [ "$APP_ANSWER" = "Deutsch" ]; then + lang="1031" +elif [ "$APP_ANSWER" = "Français" ]; then + lang="1036" +elif [ "$APP_ANSWER" = "Italiano" ]; then + lang="1040" +elif [ "$APP_ANSWER" = "Russian" ]; then + lang="1049" +elif [ "$APP_ANSWER" = "Polski" ]; then + lang="1045" +elif [ "$APP_ANSWER" = "Türkçe" ]; then + lang="1055" +elif [ "$APP_ANSWER" = "Portugués" ]; then + lang="1046" fi -echo 'Windows Registry Editor Version 5.00 +cat << EOF > "lang.reg" +Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] -"InstallLanguage"="'$lang'"' > lang.reg +"DisableMicropatching"=dword:00000001 +"InstallLanguage"="$lang" +"InstallLocation"="C:/Program Files/Neverwinter Online" +EOF + POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete - POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : (2015-04-21) # Last revision : (2020-02-10 20-45) # Distribution used to test : Linux Mint 19.3 Cinnamon - 64-bit # Game Version tested : NW.120.20200106a.23 # Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. # 2020-02-10 Yaotl: Update Wine 4.0.1 > 4.0.3; Various script fixes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" TITLE="Neverwinter Online" WINEVERSION="4.0.3" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_11_01_14_37/Neverwinter.exe" MD5_CHECKSUM="64786edb81fcb9cee4b42e3c20672fd5" #Initialization #POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Checks the required POL/POM version POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_dinput8 POL_Call POL_Install_xinput # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Set Graphic Card informations keys for wine POL_Call POL_Install_VideoDriver # Configuration Set_OS "win10" # Installation mkdir -p "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;RolePlaying;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ]; then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="1031" elif [ "$APP_ANSWER" = "Français" ]; then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ]; then lang="1040" elif [ "$APP_ANSWER" = "Russian" ]; then lang="1049" elif [ "$APP_ANSWER" = "Polski" ]; then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ]; then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ]; then lang="1046" fi cat << EOF > "lang.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "DisableMicropatching"=dword:00000001 "InstallLanguage"="$lang" "InstallLocation"="C:/Program Files/Neverwinter Online" EOF POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesTuesday 11 February 2020 at 22:05
|
Yaotl | Thursday 27 June 2019 at 21:42 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2015-04-21) -# Last revision : (2019-04-10 13-25) +# Last revision : (2019-06-27 21-41) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit -# Game Version tested: NW.105.20181121b.38 -# Author : Ronin Dusette, Yaolt, Dadu042 +# Game Version tested : NW.110.20190519a.28 +# Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # @@ -17,8 +17,8 @@ PREFIX="NeverwinterOnline" WINEVERSION="4.0.1" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" -MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Neverwinter.exe" +MD5_CHECKSUM="56d9dc0c62c874699b3ad0afef99d98c" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" @@ -32,16 +32,8 @@ # Because POL v4.2.12 only support Wine 4.0 maximum as of 2019-05-20. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." -POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" - -if [ "$APP_ANSWER" = "64-bit installation" ] - then SetArch="x64" -elif [ "$APP_ANSWER" = "32-bit installation" ] - then SetArch="x86" -fi - # Create Prefix -POL_System_SetArch "$SetArch" +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" @@ -66,7 +58,7 @@ POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" "Game;AdventureGame;" +POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;AdventureGame;" # Game Configuration POL_System_TmpCreate "$PREFIX" New source code#!/bin/bash # Date : (2015-04-21) # Last revision : (2019-06-27 21-41) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Game Version tested : NW.110.20190519a.28 # Author : Ronin Dusette, Yaotl, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.0.1" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Neverwinter.exe" MD5_CHECKSUM="56d9dc0c62c874699b3ad0afef99d98c" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Because POL v4.2.12 only support Wine 4.0 maximum as of 2019-05-20. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia). POL_Call POL_Install_VideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;AdventureGame;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 3 July 2019 at 9:48
Sunday 14 July 2019 at 19:35
Tuesday 29 October 2019 at 8:10
Tuesday 29 October 2019 at 13:05
Tuesday 29 October 2019 at 14:17
Tuesday 29 October 2019 at 18:12
Tuesday 4 February 2020 at 16:26
Monday 13 April 2020 at 18:31
Monday 13 April 2020 at 18:31
Monday 13 April 2020 at 18:32
Monday 13 April 2020 at 18:35
Monday 13 April 2020 at 18:38
Thursday 23 April 2020 at 0:00
|
Dadu042 | Monday 20 May 2019 at 16:21 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageLittle updates. I think we should avoid to use Wine staging versions. Why prodiving the choice of 32 or 64 bits ? are we sure this work fine in the 2 cases ? Differences@@ -66,7 +66,7 @@ POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" +POL_Shortcut "Neverwinter.exe" "$TITLE" "Game;AdventureGame;" # Game Configuration POL_System_TmpCreate "$PREFIX" New source code#!/bin/bash # Date : (2015-04-21) # Last revision : (2019-04-10 13-25) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Game Version tested: NW.105.20181121b.38 # Author : Ronin Dusette, Yaolt, Dadu042 # Licence : GPLv3 # PlayOnLinux : 4.3.4 # # Changelog: # 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.0.1" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" # Because POL v4.2.12 only support Wine 4.0 maximum as of 2019-05-20. POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia). POL_Call POL_Install_VideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" "Game;AdventureGame;" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 10 June 2019 at 16:14
Edited by Dadu042 |
Yaotl | Monday 8 April 2019 at 15:02 |
Yaotl
|
WarningThis update has not been approved yet by the team. MessageDifferences@@ -1,25 +1,22 @@ #!/bin/bash # Date : (2015-04-21) -# Last revision : (2019-06-27 21-41) +# Last revision : (2019-04-10 13-25) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit -# Game Version tested : NW.110.20190519a.28 -# Author : Ronin Dusette, Yaotl, Dadu042 +# Game Version : NW.105.20181121b.38 +# Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 -# -# Changelog: -# 2019-05-20 Dadu042: Add suppport for dual GPU. Upgrade wine 4.5-staging to 4.8. Add warning POL version required. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" -WINEVERSION="4.0.1" +WINEVERSION="4.5-staging" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_05_03_13_48/Neverwinter.exe" -MD5_CHECKSUM="56d9dc0c62c874699b3ad0afef99d98c" - +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" +MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" + #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init @@ -29,41 +26,42 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" -# Because POL v4.2.12 only support Wine 4.0 maximum as of 2019-05-20. -POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." +POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" +if [ "$APP_ANSWER" = "64-bit installation" ] + then SetArch="x64" +elif [ "$APP_ANSWER" = "32-bit installation" ] + then SetArch="x86" +fi # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 -# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia). -POL_Call POL_Install_VideoDriver - # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} - + # Configuration Set_OS "win10" - + # Installation mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - + # Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" "" "" "Game;AdventureGame;" - +POL_Shortcut "Neverwinter.exe" "$TITLE" + # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir - + POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" @@ -93,6 +91,7 @@ POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-21) # Last revision : (2019-04-10 13-25) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Game Version : NW.105.20181121b.38 # Author : Ronin Dusette # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.5-staging" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.png" "http://files.playonlinux.com/resources/setups/$PREFIX/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Game Configuration POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by Yaotl |
Yaotl | Monday 11 February 2019 at 5:35 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,21 +1,21 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit -# Game Version : NW.105.20181022a.10 +# Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit +# Game Version : NW.105.20181121b.11 # Author : Ronin Dusette -# Update (2018-11-06) by: Yaotl +# Update (2019-02-11) by: Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.19" +WINEVERSION="4.1" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" -MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" +MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" @@ -24,7 +24,7 @@ POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] @@ -48,10 +48,10 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] @@ -60,7 +60,7 @@ then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" -elif [ "$APP_ANSWER" = "??????? ????" ] +elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Game Version : NW.105.20181121b.11 # Author : Ronin Dusette # Update (2019-02-11) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.1" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 27 February 2019 at 20:14
Wednesday 27 February 2019 at 22:32
Friday 1 March 2019 at 18:20
Monday 20 May 2019 at 18:40
|
Yaotl | Wednesday 23 January 2019 at 10:31 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,21 +1,21 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit -# Game Version : NW.105.20181022a.10 +# Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit +# Game Version : NW.105.20181121b.11 # Author : Ronin Dusette -# Update (2018-11-06) by: Yaotl +# Update (2019-01-23) by: Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.19" +#WINEVERSION="4.0-rc7" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" -MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Neverwinter.exe" +MD5_CHECKSUM="b4ccf2087da42b9e46c4485b2605033d" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" @@ -24,7 +24,7 @@ POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] @@ -33,6 +33,13 @@ then SetArch="x86" fi +POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" +if [ "$APP_ANSWER" = "Wine_3.19" ] + then WINEVERSION="3.19" +elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] + then WINEVERSION="4.0-rc7" +fi + # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" @@ -48,10 +55,10 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] @@ -60,7 +67,7 @@ then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" -elif [ "$APP_ANSWER" = "??????? ????" ] +elif [ "$APP_ANSWER" = "Russian" ] #elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Game Version : NW.105.20181121b.11 # Author : Ronin Dusette # Update (2019-01-23) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" #WINEVERSION="4.0-rc7" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Neverwinter.exe" MD5_CHECKSUM="b4ccf2087da42b9e46c4485b2605033d" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" if [ "$APP_ANSWER" = "Wine_3.19" ] then WINEVERSION="3.19" elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] then WINEVERSION="4.0-rc7" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] #elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 23 January 2019 at 22:10
Sunday 26 January 2020 at 23:44
|
Yaotl | Wednesday 7 November 2018 at 9:52 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit -# Game Version : NW.95.201880306e.24 +# Distribution used to test : Linux Mint 19 Cinnamon 64-bit +# Game Version : NW.105.20181022a.10 # Author : Ronin Dusette -# Update (2018-06-14) by: Yaotl +# Update (2018-11-06) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 @@ -12,64 +12,83 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.10" +WINEVERSION="3.19" TITLE="Neverwinter Online" -EDITOR="Perfect World Entertainment Inc." -GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="Ronin Dusette" -SetupFileName="NeverwinterOnline-Setup.exe" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" -MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" +MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" #Initialization -POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! - +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" + +POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" +if [ "$APP_ANSWER" = "64-bit installation" ] + then SetArch="x64" +elif [ "$APP_ANSWER" = "32-bit installation" ] + then SetArch="x86" +fi # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts -POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 -POL_Call POL_Install_msxml3 -POL_Call POL_Install_msvc100 -POL_Call POL_Install_vcrun2012 -POL_Call POL_Install_vcrun2013 -POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win10" +Set_OS "win7" # Installation +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +if [ "$APP_ANSWER" = "English" ] + then lang="1033" +elif [ "$APP_ANSWER" = "Deutsch" ] + then lang="1031" +elif [ "$APP_ANSWER" = "Français" ] + then lang="1036" +elif [ "$APP_ANSWER" = "Italiano" ] + then lang="1040" +elif [ "$APP_ANSWER" = "??????? ????" ] + then lang="1049" +elif [ "$APP_ANSWER" = "Polski" ] + then lang="1045" +elif [ "$APP_ANSWER" = "Türkçe" ] + then lang="1055" +elif [ "$APP_ANSWER" = "Portugués" ] + then lang="1046" +fi + POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" -POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" +echo 'Windows Registry Editor Version 5.00 -POL_Wine "$SetupFileName" -POL_Wine_WaitExit "$TITLE" +[HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] +"InstallLanguage"="'$lang'"' > lang.reg +POL_Wine regedit "lang.reg" -# Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" +mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete +# Create Shortcut +POL_Shortcut "Neverwinter.exe" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Game Version : NW.105.20181022a.10 # Author : Ronin Dusette # Update (2018-11-06) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.19" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 12 November 2018 at 5:01
Sunday 6 January 2019 at 10:58
|
Yaotl | Thursday 14 June 2018 at 8:30 |
Yaotl
|
WarningThis update has not been approved yet by the team. MessageUpdate to WINE 3.10, top icon and custom installer Differences@@ -1,39 +1,41 @@ #!/bin/bash -# Date : (2018-03-21) -# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit -# Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 -# Game Version 7.20170206a.7 -# Author : RoninDusette +# Date : (2018-06-14) +# Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit +# Game Version : NW.95.201880306e.24 +# Author : Ronin Dusette +# Update (2018-06-14) by: Yaotl # Licence : GPLv3 -# PlayOnLinux: 4.2.10 - - +# PlayOnLinux : 4.2.12 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" -WINEVERSION="3.4" +WINEVERSION="3.10" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" -DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" -MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" - +AUTHOR="Ronin Dusette" +SetupFileName="NeverwinterOnline-Setup.exe" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" +MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" + #Initialization -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! + POL_SetupWindow_Init - +POL_SetupWindow_SetID 2505 POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma @@ -45,33 +47,31 @@ POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx - - - + # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} - + # Configuration Set_OS "win10" - + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - -POL_Wine "Neverwinter.exe" + +POL_Wine "$SetupFileName" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close - + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit # Game Version : NW.95.201880306e.24 # Author : Ronin Dusette # Update (2018-06-14) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.10" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="Ronin Dusette" SetupFileName="NeverwinterOnline-Setup.exe" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "$SetupFileName" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 22 July 2018 at 19:28
Monday 23 July 2018 at 3:24
Monday 23 July 2018 at 4:27
Thursday 26 July 2018 at 3:13
Thursday 26 July 2018 at 7:17
Edited by RoninDusette |
lolmer | Wednesday 21 March 2018 at 21:13 |
lolmer
|
WarningThis update has not been approved yet by the team. MessageTesting update to WINE 3.4 + Windows 10. Differences@@ -1,5 +1,5 @@ #!/bin/bash -# Date : (2017-03-14) +# Date : (2018-03-21) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 @@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="2.22" +WINEVERSION="3.4" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" @@ -52,7 +52,7 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" New source code#!/bin/bash # Date : (2018-03-21) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.4" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "Neverwinter.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 2 April 2018 at 19:52
|
Haros | Tuesday 20 March 2018 at 0:39 |
Haros
|
MessageI also have a problem with the installation. I get a "please wait while Neverwinter Online is installed" and the game's login screen pops up. No matter how much I wait the installation doesn't finish. If I close the game's screen the installation breaks and I get: "Error in POL_Shortcut I've also openned a thread withe the logs in the Forum. Replies |
Demenchylde | Monday 19 February 2018 at 6:14 |
Demenchylde
|
MessageI see there is still life here for this game but for the life of me I can't get it to install. Admittedly I am new to Linux much less POL. The POL installer hangs when trying to download. I have tried to use the links provided on this thread but they tell me I need to open the link using POL. Alas I have not found that option in amy of the menus either. Could the address be part of the issue?
playonlinux://www.playonlinux.com/repository/download.php?id=2505
Please help, and thank you for your time. This is the last thing holding me hostageto the dreaded Winedoze. RepliesMonday 19 February 2018 at 13:32
Monday 19 February 2018 at 16:37
Monday 19 February 2018 at 20:41
|
DroidXE | Friday 12 January 2018 at 14:53 |
DroidXE
|
MessageWith Wine 3.0 RC5 the rendering issues are gone. Couldn't find problems so far. mfg RepliesFriday 12 January 2018 at 20:41
Friday 12 January 2018 at 20:52
Monday 15 January 2018 at 5:33
Saturday 20 January 2018 at 12:10
Sunday 21 January 2018 at 0:43
Sunday 21 January 2018 at 1:01
Monday 22 January 2018 at 0:06
Monday 22 January 2018 at 0:10
Tuesday 23 January 2018 at 0:47
Tuesday 23 January 2018 at 6:38
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:24
Thursday 1 February 2018 at 20:07
|
Ronin DUSETTE | Saturday 6 January 2018 at 17:49 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="2.3-staging" +WINEVERSION="2.22" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="2.22" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "Neverwinter.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by RoninDusette |
pilak | Saturday 6 January 2018 at 15:50 |
pilak
|
MessageHi, I rewrite my last comment response here adding some precisions : I followed this procedure below : http://www.gamersonlinux.com/forum/threads/neverwinter-free-mmo-guide.170/ adding vcrun2005, vcrun2008, vcrun2010 , vcsrun2012 and vcsrun2013 with no idea of what it's doing, but also d3dx9, d3dx10 and d3dx11, and Physx Also choose wine 2,22 and had an error when selecting program neverwinter_setup.exe (which I replaced with the executable of that link : http://einsofgaming.com/nw/downloads). Meanwhile, you just need to place that executable in the wineprefix (for instance Program Files/Cryptic Studio/) and at next step of the installation wizard, select the shortcut of that executable you just pasted, and finish the installation wizard. Don't forget to configure GC memory just before you launch the game, in POL interface It just works fine currently : actually not, there are still graphical poblems but the game is playable, well installed and it patches correctly. Hope it would help. Best regards, RepliesSaturday 6 January 2018 at 17:34
Saturday 6 January 2018 at 17:50
Saturday 6 January 2018 at 18:04
Friday 12 January 2018 at 20:39
|
pilak | Monday 1 January 2018 at 17:13 |
pilak
|
MessageThe neverwinter_setup.exe is no more available... I've tried with that file and it seems ok http://einsofgaming.com/nw/downloads Maybe it's possible to supply the file directly in POL ? RepliesMonday 1 January 2018 at 22:48
Monday 1 January 2018 at 22:50
Monday 1 January 2018 at 22:51
Tuesday 2 January 2018 at 13:19
Wednesday 3 January 2018 at 20:45
Wednesday 3 January 2018 at 20:48
Saturday 6 January 2018 at 15:04
Saturday 6 January 2018 at 15:05
Monday 15 January 2018 at 5:38
|
Wendy Black | Wednesday 9 August 2017 at 8:47 |
Wendy Black
|
MessageThis program will do the following. It will install 20GB of game data. It opens the launcher and tells you XP is no longer supported. So you switch your WINE to Windows 7 and run it again. It will tell you that you graphics card is out dated. You tweak the registry files and get online and it will CRASH... [0808/152919:INFO:CONSOLE(0)] "Select shard: 1," source: http://launcher.playneverwinter.com/static/all/js/api.js(117) This program works on my HP laptop with Windows 10 and no fancy graphics adapter. But we tested on a Linux box 4GB RAM, 1 GB Video Radeon HD 5000 series iCore3 CPU @3.1 Ghz and no luck. We tried both 32 and 64 bit arch and still no good. The program ran on a Windows 7 Machine only 2 GB of RAM, Duo 2.1 Ghz CPU and mobo GPU. The webpage still says these system requirements: Operating System Windows® Vista, 7, 8 or 10 CPU Out of all the machines tested on our BB network the game lagged badly. The network tested at 60 up and 7 down. The game was giving poor frame rates most under 20 FPS. RepliesMonday 21 August 2017 at 17:58
Saturday 23 September 2017 at 17:00
|
Wasper | Friday 23 June 2017 at 9:16 |
Wasper
|
MessageDuring installation, after PhysX install, there is a window about "Do not run Neverwinter online or log in after installation.. etc". Then I have an error. I think its about installer.. but question is how to download installer, what is correct url now? And what then? Replies |
koniuszko | Thursday 22 June 2017 at 13:25 |
koniuszko
|
MessageAny news is Neverwinter will work on Playonlinux ? RepliesSaturday 23 September 2017 at 17:05
|
ericjbohm | Saturday 10 June 2017 at 17:15 |
ericjbohm
|
MessageI tried this update and it failed here.
06/10/17 10:14:20 - [POL_Wine] Message: Running wine-2.3-staging neverwinter_setup.exe (Working directory : /home/bohm/.PlayOnLinux/tmp/NeverwinterOnline) Replies |
Ronin DUSETTE | Sunday 28 May 2017 at 16:14 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -29,7 +29,7 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix -POL_System_SetArch "x86" +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="2.3-staging" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "d41d8cd98f00b204e9800998ecf8427e" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 28 May 2017 at 16:14
Sunday 28 May 2017 at 16:14
Sunday 28 May 2017 at 16:51
Edited by RoninDusette |
Metalfyre | Sunday 28 May 2017 at 12:49 |
Metalfyre
|
MessageI tried this, but I got the same message as someone has posted before, and I quote:
Error ! Files mismatch
Local : 1fa1de40bf9231215f2c563c08837f20 ( <<< these might differ, but the result is the same, a mismatch) Server: 9fa8430da0f8aa5c3cfc87d0e26c2d9f
Do you want to retry?
click yes and it flashes like it is going to download, showing the download progress bar, then displays the above error again.
Clicking yes repeatedly results in a fatal error.
Error in POL_Download Unable to download http://download.perfectworld.com/nw/neverwinter_setup.exe after 5 attempts" RepliesSunday 28 May 2017 at 12:51
Sunday 28 May 2017 at 16:11
Wednesday 31 May 2017 at 22:42
Wednesday 31 May 2017 at 22:51
Wednesday 31 May 2017 at 22:54
|
duckie68 | Tuesday 9 May 2017 at 0:06 |
duckie68
|
MessageHaving the usual install programs - got an issue about freetype and used the solution here. I have to do that with any install though. Replies |
arcticfox4 | Tuesday 28 March 2017 at 20:35 |
arcticfox4
|
MessageDidn't work with 2.3-staging, my gpu is intel HD520, the game launcher says it doesn't support dx11 even though it actually does Replies |
DroidXE | Tuesday 14 March 2017 at 21:54 |
DroidXE
|
WarningThis update has not been approved yet by the team. MessageUpdated Installer to Wine 2.3. Game is playable, but has some graphical bugs.
mfg Differences@@ -1,55 +1,76 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : RoninDusette +# Date : (2017-03-14) +# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit +# Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 +# Game Version 7.20170206a.7 +# Author : DroidXE # Licence : GPLv3 -# PlayOnLinux: 4.2.7 - - +# PlayOnLinux: 4.2.10 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="NeverwinterOnline" -WINEVERSION="1.7.40" -TITLE="Neverwinter Online" + +PREFIX="NeverwinterOnlineTest" +WINEVERSION="2.3-staging" +TITLE="Neverwinter Online Test" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" +AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" - + #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + +# Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msvc100 +POL_Call POL_Install_vcrun2012 +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_physx + + + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} + # Configuration -Set_OS "winxp" - +Set_OS "win7" + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : DroidXE # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnlineTest" WINEVERSION="2.3-staging" TITLE="Neverwinter Online Test" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 20 March 2017 at 15:05
|
Piperina | Sunday 22 January 2017 at 9:30 |
Piperina
|
MessageI've tried to install the program on my mac but it doesn' work. The wine requested is the 1.70.40 but in this version of Playonmac this wine is not present. Can you help me?
Replies |
DroidXE | Wednesday 18 January 2017 at 22:17 |
DroidXE
|
WarningThis update has not been approved yet by the team. MessageI modified the installer. The current release runs well on my PC.
mfg Differences@@ -1,55 +1,75 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : RoninDusette +# Date : (2017-01-18) +# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit +# Graphics Card: NVIDIA GK106 [GeForce GTX 650 Ti]; GLX Version: 4.5.0 NVIDIA 375.26 +# Game Version 70.20161205a.9 +# Author : DroidXE # Licence : GPLv3 -# PlayOnLinux: 4.2.7 - - +# PlayOnLinux: 4.2.10 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" +AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" - + #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" +# Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msvc100 +POL_Call POL_Install_vcrun2012 +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_physx + + + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} + # Configuration -Set_OS "winxp" - +Set_OS "win7" + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-01-18) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 650 Ti]; GLX Version: 4.5.0 NVIDIA 375.26 # Game Version 70.20161205a.9 # Author : DroidXE # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
anong | Thursday 17 November 2016 at 12:11 |
anong
|
Message[11/17/16 16:02:47] - Running wine-1.7.40 Neverwinter.exe (Working directory : /home/produser/.PlayOnLinux/wineprefix/NeverwinterOnline/drive_c/Program Files/Cryptic Studios) HELP ME PLEASE Replies |
tkvasager | Monday 27 July 2015 at 15:46 |
tkvasager
|
MessageI am having an issue running the install using the vanilla script that is default for Neverwinter Online. It appears to have difficulty downloading the setup.exe. It goes directly to a failed CRC check.
http://download.perfectworld.com/nw/neverwinter_setup.exe
Error ! Files mismatch
Local : 1fa1de40bf9231215f2c563c08837f20 Server: 9fa8430da0f8aa5c3cfc87d0e26c2d9f
Do you want to retry?
click yes and it flashes like it is going to download, showing the download progress bar, then displays the above error again.
Clicking yes repeatedly results in a fatal error.
Error in POL_Download Unable to download http://download.perfectworld.com/nw/neverwinter_setup.exe after 5 attempts I have reported as a bug, and put in a suggestion for what needs to be changed, I was wondering if you have experienced this recently? I loaded with out a problem using Xubuntu about a month ago, I reloaded to Fedora, tried to install yesterday, 27-07-2015 and received this error.
DE: xfce Distro: Fedora 22 RepliesMonday 27 July 2015 at 16:42
Monday 27 July 2015 at 17:11
Wednesday 5 August 2015 at 23:57
Thursday 6 August 2015 at 0:06
|
AMEER157 | Sunday 31 May 2015 at 17:46 |
AMEER157
|
MessageWorked great on my Ubuntu 14.04.2 LTS 64 Bit Just click the "Install this program button" and PlayOnLinux will take care of the dependencies and all the required files. NOTE: After you log into the game using your credentials. The splash screen "Cyrptic" will take about 10-15 mins to disappear. This happens only at the initial login and the game will load normaly next time. RepliesMonday 1 June 2015 at 3:33
Monday 1 June 2015 at 3:34
Monday 1 June 2015 at 3:38
Monday 1 June 2015 at 15:28
Monday 1 June 2015 at 15:31
Monday 1 June 2015 at 18:28
Tuesday 2 June 2015 at 3:01
Tuesday 2 June 2015 at 3:02
|
backad | Sunday 24 May 2015 at 19:25 |
backad
|
Message#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX= "NeverwinterOnline" WINEVERSION= "1.7.40" TITLE= "Neverwinter Online" EDITOR= "Perfect World Entertainment Inc." GAME_URL= "http://www.arcgames.com/en/games/neverwinter" AUTHOR= "RoninDusette" DOWNLOAD_URL= "http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Resolve bug of sources
POL_Install_corefonts
POL_Install_dxfullsetup POL_Install_d3dcompiler_43 POL_Install_tahoma # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 24 May 2015 at 19:26
Sunday 24 May 2015 at 21:26
Wednesday 8 July 2015 at 1:59
Wednesday 8 July 2015 at 2:50
|
Ronin DUSETTE | Thursday 7 May 2015 at 4:00 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageAdding message not to log in after initial installation. Differences@@ -37,6 +37,9 @@ POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Wednesday 22 April 2015 at 8:31 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageUsing tmp folders. Totally forgot to do that. :) Differences@@ -34,6 +34,8 @@ Set_OS "winxp" # Installation +POL_System_TmpCreate "$PREFIX" +cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" @@ -41,6 +43,9 @@ # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" +# Cleanup +POL_System_TmpDelete + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Wednesday 22 April 2015 at 8:08 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageInitial commit Differences@@ -0,0 +1,47 @@ +#!/bin/bash +# Date : (2015-04-21) +# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.7 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="NeverwinterOnline" +WINEVERSION="1.7.40" +TITLE="Neverwinter Online" +EDITOR="Perfect World Entertainment Inc." +GAME_URL="http://www.arcgames.com/en/games/neverwinter" +AUTHOR="RoninDusette" +DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +# Installation +POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" +POL_Wine "neverwinter_setup.exe" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcut +POL_Shortcut "Neverwinter.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" 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