Neverwinter (Online)
Informations
Créateur | Messages |
---|---|
Ronin DUSETTE
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience11 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 Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
Yaotl | Mardi 12 Octobre 2021 à 12:52 |
Yaotl
|
InformationCette mise à jour a été acceptée par l'équipe 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 Nouveau code source#!/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 RéponsesMercredi 13 Octobre 2021 à 17:54
Edité par Yaotl |
dae | Vendredi 24 September 2021 à 21:50 |
dae
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 + + Nouveau code source#!/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 RéponsesVendredi 24 September 2021 à 21:51
|
Yaotl | Dimanche 19 September 2021 à 15:51 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesDimanche 19 September 2021 à 16:21
Dimanche 19 September 2021 à 19:22
Dimanche 19 September 2021 à 19:51
Lundi 20 September 2021 à 1:13
Edité par Yaotl |
dae | Samedi 18 September 2021 à 20:54 |
dae
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesEdité par dae |
Yaotl | Mardi 15 Juin 2021 à 23:25 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
Yaotl | Lundi 12 Avril 2021 à 9:09 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesLundi 12 Avril 2021 à 22:47
Mardi 13 Avril 2021 à 1:06
Edité par Yaotl |
Dadu042 | Mercredi 30 September 2020 à 20:26 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWine 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" Nouveau code source#!/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 Réponses |
Yaotl | Vendredi 31 Juillet 2020 à 7:12 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThis 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 Nouveau code source#!/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 RéponsesVendredi 31 Juillet 2020 à 12:20
Mercredi 30 September 2020 à 18:36
Mercredi 30 September 2020 à 18:55
Mercredi 30 September 2020 à 20:25
|
Yaotl | Vendredi 10 Juillet 2020 à 21:39 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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] Nouveau code source#!/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 RéponsesVendredi 10 Juillet 2020 à 22:17
|
Yaotl | Mardi 11 Février 2020 à 19:08 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesMardi 11 Février 2020 à 22:05
|
Yaotl | Jeudi 27 Juin 2019 à 21:42 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesMercredi 3 Juillet 2019 à 9:48
Dimanche 14 Juillet 2019 à 19:35
Mardi 29 Octobre 2019 à 8:10
Mardi 29 Octobre 2019 à 13:05
Mardi 29 Octobre 2019 à 14:17
Mardi 29 Octobre 2019 à 18:12
Mardi 4 Février 2020 à 16:26
Lundi 13 Avril 2020 à 18:31
Lundi 13 Avril 2020 à 18:31
Lundi 13 Avril 2020 à 18:32
Lundi 13 Avril 2020 à 18:35
Lundi 13 Avril 2020 à 18:38
Jeudi 23 Avril 2020 à 0:00
|
Dadu042 | Lundi 20 Mai 2019 à 16:21 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesLittle 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" Nouveau code source#!/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 RéponsesLundi 10 Juin 2019 à 16:14
Edité par Dadu042 |
Yaotl | Lundi 8 Avril 2019 à 15:02 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDifferences@@ -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 Nouveau code source#!/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 RéponsesEdité par Yaotl |
Yaotl | Lundi 11 Février 2019 à 5:35 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesMercredi 27 Février 2019 à 20:14
Mercredi 27 Février 2019 à 22:32
Vendredi 1 Mars 2019 à 18:20
Lundi 20 Mai 2019 à 18:40
|
Yaotl | Mercredi 23 Janvier 2019 à 10:31 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesMercredi 23 Janvier 2019 à 22:10
Dimanche 26 Janvier 2020 à 23:44
|
Yaotl | Mercredi 7 Novembre 2018 à 9:52 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesLundi 12 Novembre 2018 à 5:01
Dimanche 6 Janvier 2019 à 10:58
|
Yaotl | Jeudi 14 Juin 2018 à 8:30 |
Yaotl
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate 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 Nouveau code source#!/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 RéponsesDimanche 22 Juillet 2018 à 19:28
Lundi 23 Juillet 2018 à 3:24
Lundi 23 Juillet 2018 à 4:27
Jeudi 26 Juillet 2018 à 3:13
Jeudi 26 Juillet 2018 à 7:17
Edité par RoninDusette |
lolmer | Mercredi 21 Mars 2018 à 21:13 |
lolmer
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesTesting 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" Nouveau code source#!/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 RéponsesLundi 2 Avril 2018 à 19:52
|
Haros | Mardi 20 Mars 2018 à 0:39 |
Haros
|
MessagesI 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. Réponses |
Demenchylde | Lundi 19 Février 2018 à 6:14 |
Demenchylde
|
MessagesI 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. RéponsesLundi 19 Février 2018 à 13:32
Lundi 19 Février 2018 à 16:37
Lundi 19 Février 2018 à 20:41
|
DroidXE | Vendredi 12 Janvier 2018 à 14:53 |
DroidXE
|
MessagesWith Wine 3.0 RC5 the rendering issues are gone. Couldn't find problems so far. mfg RéponsesVendredi 12 Janvier 2018 à 20:41
Vendredi 12 Janvier 2018 à 20:52
Lundi 15 Janvier 2018 à 5:33
Samedi 20 Janvier 2018 à 12:10
Dimanche 21 Janvier 2018 à 0:43
Dimanche 21 Janvier 2018 à 1:01
Lundi 22 Janvier 2018 à 0:06
Lundi 22 Janvier 2018 à 0:10
Mardi 23 Janvier 2018 à 0:47
Mardi 23 Janvier 2018 à 6:38
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:22
Jeudi 1 Février 2018 à 18:24
Jeudi 1 Février 2018 à 20:07
|
Ronin DUSETTE | Samedi 6 Janvier 2018 à 17:49 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesEdité par RoninDusette |
pilak | Samedi 6 Janvier 2018 à 15:50 |
pilak
|
MessagesHi, 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, RéponsesSamedi 6 Janvier 2018 à 17:34
Samedi 6 Janvier 2018 à 17:50
Samedi 6 Janvier 2018 à 18:04
Vendredi 12 Janvier 2018 à 20:39
|
pilak | Lundi 1 Janvier 2018 à 17:13 |
pilak
|
MessagesThe 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 ? RéponsesLundi 1 Janvier 2018 à 22:48
Lundi 1 Janvier 2018 à 22:50
Lundi 1 Janvier 2018 à 22:51
Mardi 2 Janvier 2018 à 13:19
Mercredi 3 Janvier 2018 à 20:45
Mercredi 3 Janvier 2018 à 20:48
Samedi 6 Janvier 2018 à 15:04
Samedi 6 Janvier 2018 à 15:05
Lundi 15 Janvier 2018 à 5:38
|
Wendy Black | Mercredi 9 Aoüt 2017 à 8:47 |
Wendy Black
|
MessagesThis 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. RéponsesLundi 21 Aoüt 2017 à 17:58
Samedi 23 September 2017 à 17:00
|
Wasper | Vendredi 23 Juin 2017 à 9:16 |
Wasper
|
MessagesDuring 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? Réponses |
koniuszko | Jeudi 22 Juin 2017 à 13:25 |
koniuszko
|
MessagesAny news is Neverwinter will work on Playonlinux ? RéponsesSamedi 23 September 2017 à 17:05
|
ericjbohm | Samedi 10 Juin 2017 à 17:15 |
ericjbohm
|
MessagesI 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) Réponses |
Ronin DUSETTE | Dimanche 28 Mai 2017 à 16:14 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 RéponsesDimanche 28 Mai 2017 à 16:14
Dimanche 28 Mai 2017 à 16:14
Dimanche 28 Mai 2017 à 16:51
Edité par RoninDusette |
Metalfyre | Dimanche 28 Mai 2017 à 12:49 |
Metalfyre
|
MessagesI 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" RéponsesDimanche 28 Mai 2017 à 12:51
Dimanche 28 Mai 2017 à 16:11
Mercredi 31 Mai 2017 à 22:42
Mercredi 31 Mai 2017 à 22:51
Mercredi 31 Mai 2017 à 22:54
|
duckie68 | Mardi 9 Mai 2017 à 0:06 |
duckie68
|
MessagesHaving the usual install programs - got an issue about freetype and used the solution here. I have to do that with any install though. Réponses |
arcticfox4 | Mardi 28 Mars 2017 à 20:35 |
arcticfox4
|
MessagesDidn'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 Réponses |
DroidXE | Mardi 14 Mars 2017 à 21:54 |
DroidXE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdated 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 Nouveau code source#!/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 RéponsesLundi 20 Mars 2017 à 15:05
|
Piperina | Dimanche 22 Janvier 2017 à 9:30 |
Piperina
|
MessagesI'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?
Réponses |
DroidXE | Mercredi 18 Janvier 2017 à 22:17 |
DroidXE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI 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 Nouveau code source#!/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 Réponses |
anong | Jeudi 17 Novembre 2016 à 12:11 |
anong
|
Messages[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 Réponses |
tkvasager | Lundi 27 Juillet 2015 à 15:46 |
tkvasager
|
MessagesI 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 RéponsesLundi 27 Juillet 2015 à 16:42
Lundi 27 Juillet 2015 à 17:11
Mercredi 5 Aoüt 2015 à 23:57
Jeudi 6 Aoüt 2015 à 0:06
|
AMEER157 | Dimanche 31 Mai 2015 à 17:46 |
AMEER157
|
MessagesWorked 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. RéponsesLundi 1 Juin 2015 à 3:33
Lundi 1 Juin 2015 à 3:34
Lundi 1 Juin 2015 à 3:38
Lundi 1 Juin 2015 à 15:28
Lundi 1 Juin 2015 à 15:31
Lundi 1 Juin 2015 à 18:28
Mardi 2 Juin 2015 à 3:01
Mardi 2 Juin 2015 à 3:02
|
backad | Dimanche 24 Mai 2015 à 19:25 |
backad
|
Messages#!/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 RéponsesDimanche 24 Mai 2015 à 19:26
Dimanche 24 Mai 2015 à 21:26
Mercredi 8 Juillet 2015 à 1:59
Mercredi 8 Juillet 2015 à 2:50
|
Ronin DUSETTE | Jeudi 7 Mai 2015 à 4:00 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdding 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" Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Mercredi 22 Avril 2015 à 8:31 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUsing 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 Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Mercredi 22 Avril 2015 à 8:08 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesInitial 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 Nouveau code source#!/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 Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com