Neverwinter Online
Informations
Creator | Message |
---|---|
Ronin DUSETTE
![]() Admin
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks8 8 DescriptionNo Arc required! From http://www.arcgames.com/en/games/neverwinter: "Neverwinter is a Dungeons & Dragons free-to-play massively multiplayer online role-playing game for the Microsoft Windows platform." ScreenshotsSource code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Game Version : NW.105.20181121b.11 # Author : Ronin Dusette # Update (2019-02-11) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.1" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Yaotl | Monday 11 February 2019 at 5:35 |
Yaotl
![]()
|
InformationThis update has been approved by the team. Differences@@ -1,21 +1,21 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit -# Game Version : NW.105.20181022a.10 +# Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit +# Game Version : NW.105.20181121b.11 # Author : Ronin Dusette -# Update (2018-11-06) by: Yaotl +# Update (2019-02-11) by: Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.19" +WINEVERSION="4.1" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" -MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" +MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" @@ -24,7 +24,7 @@ POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] @@ -48,10 +48,10 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] @@ -60,7 +60,7 @@ then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" -elif [ "$APP_ANSWER" = "??????? ????" ] +elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Game Version : NW.105.20181121b.11 # Author : Ronin Dusette # Update (2019-02-11) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="4.1" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2019_02_01_16_47/Neverwinter.exe" MD5_CHECKSUM="d071e2874dd430f6b645774a95a727de" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Yaotl | Wednesday 23 January 2019 at 10:31 |
Yaotl
![]()
|
WarningThis update has not been approved yet by the team. Differences@@ -1,21 +1,21 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 19 Cinnamon 64-bit -# Game Version : NW.105.20181022a.10 +# Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit +# Game Version : NW.105.20181121b.11 # Author : Ronin Dusette -# Update (2018-11-06) by: Yaotl +# Update (2019-01-23) by: Yaotl # Licence : GPLv3 -# PlayOnLinux : 4.2.12 +# PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.19" +#WINEVERSION="4.0-rc7" TITLE="Neverwinter Online" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" -MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Neverwinter.exe" +MD5_CHECKSUM="b4ccf2087da42b9e46c4485b2605033d" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" @@ -24,7 +24,7 @@ POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] @@ -33,6 +33,13 @@ then SetArch="x86" fi +POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" +if [ "$APP_ANSWER" = "Wine_3.19" ] + then WINEVERSION="3.19" +elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] + then WINEVERSION="4.0-rc7" +fi + # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" @@ -48,10 +55,10 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation -POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] @@ -60,7 +67,7 @@ then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" -elif [ "$APP_ANSWER" = "??????? ????" ] +elif [ "$APP_ANSWER" = "Russian" ] #elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19.1 Cinnamon 64-bit # Game Version : NW.105.20181121b.11 # Author : Ronin Dusette # Update (2019-01-23) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" #WINEVERSION="4.0-rc7" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_12_21_17_06/Neverwinter.exe" MD5_CHECKSUM="b4ccf2087da42b9e46c4485b2605033d" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi POL_SetupWindow_menu "" "$TITLE" "Wine_3.19|Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" "|" if [ "$APP_ANSWER" = "Wine_3.19" ] then WINEVERSION="3.19" elif [ "$APP_ANSWER" = "Wine_4.0-rc7_non_PlayOnLinux/Mac_4.2.12_compatible" ] then WINEVERSION="4.0-rc7" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|Russian|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "Russian" ] #elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 23 January 2019 at 22:10
|
Yaotl | Wednesday 7 November 2018 at 9:52 |
Yaotl
![]()
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2018-06-14) -# Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit -# Game Version : NW.95.201880306e.24 +# Distribution used to test : Linux Mint 19 Cinnamon 64-bit +# Game Version : NW.105.20181022a.10 # Author : Ronin Dusette -# Update (2018-06-14) by: Yaotl +# Update (2018-11-06) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 @@ -12,64 +12,83 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="3.10" +WINEVERSION="3.19" TITLE="Neverwinter Online" -EDITOR="Perfect World Entertainment Inc." -GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="Ronin Dusette" -SetupFileName="NeverwinterOnline-Setup.exe" -DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" -MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" +MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" #Initialization -POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! - +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation -POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" + +POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" +if [ "$APP_ANSWER" = "64-bit installation" ] + then SetArch="x64" +elif [ "$APP_ANSWER" = "32-bit installation" ] + then SetArch="x86" +fi # Create Prefix -POL_System_SetArch "x64" +POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts -POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 -POL_Call POL_Install_msxml3 -POL_Call POL_Install_msvc100 -POL_Call POL_Install_vcrun2012 -POL_Call POL_Install_vcrun2013 -POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win10" +Set_OS "win7" # Installation +POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" +if [ "$APP_ANSWER" = "English" ] + then lang="1033" +elif [ "$APP_ANSWER" = "Deutsch" ] + then lang="1031" +elif [ "$APP_ANSWER" = "Français" ] + then lang="1036" +elif [ "$APP_ANSWER" = "Italiano" ] + then lang="1040" +elif [ "$APP_ANSWER" = "??????? ????" ] + then lang="1049" +elif [ "$APP_ANSWER" = "Polski" ] + then lang="1045" +elif [ "$APP_ANSWER" = "Türkçe" ] + then lang="1055" +elif [ "$APP_ANSWER" = "Portugués" ] + then lang="1046" +fi + POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir -POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" -POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" +echo 'Windows Registry Editor Version 5.00 -POL_Wine "$SetupFileName" -POL_Wine_WaitExit "$TITLE" +[HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] +"InstallLanguage"="'$lang'"' > lang.reg +POL_Wine regedit "lang.reg" -# Create Shortcut -POL_Shortcut "Neverwinter.exe" "$TITLE" +mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" +POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete +# Create Shortcut +POL_Shortcut "Neverwinter.exe" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 19 Cinnamon 64-bit # Game Version : NW.105.20181022a.10 # Author : Ronin Dusette # Update (2018-11-06) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.19" TITLE="Neverwinter Online" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/CL_2018_10_01_17_58/Neverwinter.exe" MD5_CHECKSUM="e74b23798eb597ce3da68632113cf816" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Perfect World Entertainment Inc." "https://www.arcgames.com/en/games/neverwinter" "RoninDusette" "$PREFIX" POL_SetupWindow_menu "" "$TITLE" "64-bit installation|32-bit installation" "|" if [ "$APP_ANSWER" = "64-bit installation" ] then SetArch="x64" elif [ "$APP_ANSWER" = "32-bit installation" ] then SetArch="x86" fi # Create Prefix POL_System_SetArch "$SetArch" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_SetupWindow_menu "Select a language:" "$TITLE" "English|Deutsch|Français|Italiano|??????? ????|Polski|Türkçe|Portugués" "|" if [ "$APP_ANSWER" = "English" ] then lang="1033" elif [ "$APP_ANSWER" = "Deutsch" ] then lang="1031" elif [ "$APP_ANSWER" = "Français" ] then lang="1036" elif [ "$APP_ANSWER" = "Italiano" ] then lang="1040" elif [ "$APP_ANSWER" = "??????? ????" ] then lang="1049" elif [ "$APP_ANSWER" = "Polski" ] then lang="1045" elif [ "$APP_ANSWER" = "Türkçe" ] then lang="1055" elif [ "$APP_ANSWER" = "Portugués" ] then lang="1046" fi POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir echo 'Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Cryptic\Neverwinter] "InstallLanguage"="'$lang'"' > lang.reg POL_Wine regedit "lang.reg" mkdir "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" cd "$WINEPREFIX/drive_c/Program Files/Neverwinter Online" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" # Cleanup POL_System_TmpDelete # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 12 November 2018 at 5:01
Monday 12 November 2018 at 5:01
Sunday 6 January 2019 at 10:58
|
Yaotl | Thursday 14 June 2018 at 8:30 |
Yaotl
![]()
|
WarningThis update has not been approved yet by the team. MessageUpdate to WINE 3.10, top icon and custom installer Differences@@ -1,39 +1,41 @@ #!/bin/bash -# Date : (2018-03-21) -# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit -# Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 -# Game Version 7.20170206a.7 -# Author : RoninDusette +# Date : (2018-06-14) +# Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit +# Game Version : NW.95.201880306e.24 +# Author : Ronin Dusette +# Update (2018-06-14) by: Yaotl # Licence : GPLv3 -# PlayOnLinux: 4.2.10 - - +# PlayOnLinux : 4.2.12 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" -WINEVERSION="3.4" +WINEVERSION="3.10" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" -DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" -MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" - +AUTHOR="Ronin Dusette" +SetupFileName="NeverwinterOnline-Setup.exe" +DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" +MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" + #Initialization -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! + POL_SetupWindow_Init - +POL_SetupWindow_SetID 2505 POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma @@ -45,33 +47,31 @@ POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx - - - + # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} - + # Configuration Set_OS "win10" - + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - -POL_Wine "Neverwinter.exe" + +POL_Wine "$SetupFileName" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close - + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2018-06-14) # Distribution used to test : Linux Mint 18.3 Cinnamon 64-bit # Game Version : NW.95.201880306e.24 # Author : Ronin Dusette # Update (2018-06-14) by: Yaotl # Licence : GPLv3 # PlayOnLinux : 4.2.12 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.10" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="Ronin Dusette" SetupFileName="NeverwinterOnline-Setup.exe" DOWNLOAD_URL="http://0815.bplaced.net/resources/setups/$PREFIX/$SetupFileName" MD5_CHECKSUM="233912fa1ab9840e82d6dd66463b60c2" #Initialization POL_GetSetupImages "http://0815.bplaced.net/resources/setups/$PREFIX/top.ico" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" # Original Images 404! POL_SetupWindow_Init POL_SetupWindow_SetID 2505 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "$SetupFileName" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 22 July 2018 at 19:28
Monday 23 July 2018 at 3:24
Monday 23 July 2018 at 4:27
Thursday 26 July 2018 at 3:13
Thursday 26 July 2018 at 7:17
Edited by RoninDusette |
lolmer | Wednesday 21 March 2018 at 21:13 |
lolmer
![]()
|
WarningThis update has not been approved yet by the team. MessageTesting update to WINE 3.4 + Windows 10. Differences@@ -1,5 +1,5 @@ #!/bin/bash -# Date : (2017-03-14) +# Date : (2018-03-21) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 @@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="2.22" +WINEVERSION="3.4" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" @@ -52,7 +52,7 @@ POL_SetupWindow_VMS ${GAME_VMS} # Configuration -Set_OS "win7" +Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" New source code#!/bin/bash # Date : (2018-03-21) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="3.4" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win10" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "Neverwinter.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 2 April 2018 at 19:52
|
Haros | Tuesday 20 March 2018 at 0:39 |
Haros
![]()
|
MessageI also have a problem with the installation. I get a "please wait while Neverwinter Online is installed" and the game's login screen pops up. No matter how much I wait the installation doesn't finish. If I close the game's screen the installation breaks and I get: "Error in POL_Shortcut I've also openned a thread withe the logs in the Forum. Replies |
Demenchylde | Monday 19 February 2018 at 6:14 |
Demenchylde
![]()
|
MessageI see there is still life here for this game but for the life of me I can't get it to install. Admittedly I am new to Linux much less POL. The POL installer hangs when trying to download. I have tried to use the links provided on this thread but they tell me I need to open the link using POL. Alas I have not found that option in amy of the menus either. Could the address be part of the issue?
playonlinux://www.playonlinux.com/repository/download.php?id=2505
Please help, and thank you for your time. This is the last thing holding me hostageto the dreaded Winedoze. RepliesMonday 19 February 2018 at 13:32
Monday 19 February 2018 at 16:37
Monday 19 February 2018 at 20:41
|
DroidXE | Friday 12 January 2018 at 14:53 |
DroidXE
![]()
|
MessageWith Wine 3.0 RC5 the rendering issues are gone. Couldn't find problems so far. mfg RepliesFriday 12 January 2018 at 20:41
Friday 12 January 2018 at 20:52
Monday 15 January 2018 at 5:33
Saturday 20 January 2018 at 12:10
Sunday 21 January 2018 at 0:43
Sunday 21 January 2018 at 1:01
Monday 22 January 2018 at 0:06
Monday 22 January 2018 at 0:10
Tuesday 23 January 2018 at 0:47
Tuesday 23 January 2018 at 6:38
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:22
Thursday 1 February 2018 at 18:24
Thursday 1 February 2018 at 20:07
|
Ronin DUSETTE | Saturday 6 January 2018 at 17:49 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" -WINEVERSION="2.3-staging" +WINEVERSION="2.22" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="2.22" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://einsofgaming.com/downloads/Neverwinter.exe" MD5_CHECKSUM="f1d3597232525b3bc463257471fddaec" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "Neverwinter.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesEdited by RoninDusette |
pilak | Saturday 6 January 2018 at 15:50 |
pilak
![]()
|
MessageHi, I rewrite my last comment response here adding some precisions : I followed this procedure below : http://www.gamersonlinux.com/forum/threads/neverwinter-free-mmo-guide.170/ adding vcrun2005, vcrun2008, vcrun2010 , vcsrun2012 and vcsrun2013 with no idea of what it's doing, but also d3dx9, d3dx10 and d3dx11, and Physx Also choose wine 2,22 and had an error when selecting program neverwinter_setup.exe (which I replaced with the executable of that link : http://einsofgaming.com/nw/downloads). Meanwhile, you just need to place that executable in the wineprefix (for instance Program Files/Cryptic Studio/) and at next step of the installation wizard, select the shortcut of that executable you just pasted, and finish the installation wizard. Don't forget to configure GC memory just before you launch the game, in POL interface It just works fine currently : actually not, there are still graphical poblems but the game is playable, well installed and it patches correctly. Hope it would help. Best regards, RepliesSaturday 6 January 2018 at 17:34
Saturday 6 January 2018 at 17:50
Saturday 6 January 2018 at 18:04
Friday 12 January 2018 at 20:39
|
pilak | Monday 1 January 2018 at 17:13 |
pilak
![]()
|
MessageThe neverwinter_setup.exe is no more available... I've tried with that file and it seems ok http://einsofgaming.com/nw/downloads Maybe it's possible to supply the file directly in POL ? RepliesMonday 1 January 2018 at 22:48
Monday 1 January 2018 at 22:50
Monday 1 January 2018 at 22:51
Tuesday 2 January 2018 at 13:19
Wednesday 3 January 2018 at 20:45
Wednesday 3 January 2018 at 20:48
Saturday 6 January 2018 at 15:04
Saturday 6 January 2018 at 15:05
Monday 15 January 2018 at 5:38
|
Wendy Black | Wednesday 9 August 2017 at 8:47 |
Wendy Black
![]()
|
MessageThis program will do the following. It will install 20GB of game data. It opens the launcher and tells you XP is no longer supported. So you switch your WINE to Windows 7 and run it again. It will tell you that you graphics card is out dated. You tweak the registry files and get online and it will CRASH... [0808/152919:INFO:CONSOLE(0)] "Select shard: 1," source: http://launcher.playneverwinter.com/static/all/js/api.js(117) This program works on my HP laptop with Windows 10 and no fancy graphics adapter. But we tested on a Linux box 4GB RAM, 1 GB Video Radeon HD 5000 series iCore3 CPU @3.1 Ghz and no luck. We tried both 32 and 64 bit arch and still no good. The program ran on a Windows 7 Machine only 2 GB of RAM, Duo 2.1 Ghz CPU and mobo GPU. The webpage still says these system requirements: Operating System Windows® Vista, 7, 8 or 10 CPU Out of all the machines tested on our BB network the game lagged badly. The network tested at 60 up and 7 down. The game was giving poor frame rates most under 20 FPS. RepliesMonday 21 August 2017 at 17:58
Saturday 23 September 2017 at 17:00
|
Wasper | Friday 23 June 2017 at 9:16 |
Wasper
![]()
|
MessageDuring installation, after PhysX install, there is a window about "Do not run Neverwinter online or log in after installation.. etc". Then I have an error. I think its about installer.. but question is how to download installer, what is correct url now? And what then? Replies |
koniuszko | Thursday 22 June 2017 at 13:25 |
koniuszko
![]()
|
MessageAny news is Neverwinter will work on Playonlinux ? RepliesSaturday 23 September 2017 at 17:05
|
ericjbohm | Saturday 10 June 2017 at 17:15 |
ericjbohm
![]()
|
MessageI tried this update and it failed here.
06/10/17 10:14:20 - [POL_Wine] Message: Running wine-2.3-staging neverwinter_setup.exe (Working directory : /home/bohm/.PlayOnLinux/tmp/NeverwinterOnline) Replies |
Ronin DUSETTE | Sunday 28 May 2017 at 16:14 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. Differences@@ -29,7 +29,7 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix -POL_System_SetArch "x86" +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="2.3-staging" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "d41d8cd98f00b204e9800998ecf8427e" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 28 May 2017 at 16:14
Sunday 28 May 2017 at 16:14
Sunday 28 May 2017 at 16:51
Edited by RoninDusette |
Metalfyre | Sunday 28 May 2017 at 12:49 |
Metalfyre
![]()
|
MessageI tried this, but I got the same message as someone has posted before, and I quote:
Error ! Files mismatch
Local : 1fa1de40bf9231215f2c563c08837f20 ( <<< these might differ, but the result is the same, a mismatch) Server: 9fa8430da0f8aa5c3cfc87d0e26c2d9f
Do you want to retry?
click yes and it flashes like it is going to download, showing the download progress bar, then displays the above error again.
Clicking yes repeatedly results in a fatal error.
Error in POL_Download Unable to download http://download.perfectworld.com/nw/neverwinter_setup.exe after 5 attempts" RepliesSunday 28 May 2017 at 12:51
Sunday 28 May 2017 at 16:11
Wednesday 31 May 2017 at 22:42
Wednesday 31 May 2017 at 22:51
Wednesday 31 May 2017 at 22:54
|
duckie68 | Tuesday 9 May 2017 at 0:06 |
duckie68
![]()
|
MessageHaving the usual install programs - got an issue about freetype and used the solution here. I have to do that with any install though. Replies |
arcticfox4 | Tuesday 28 March 2017 at 20:35 |
arcticfox4
![]()
|
MessageDidn't work with 2.3-staging, my gpu is intel HD520, the game launcher says it doesn't support dx11 even though it actually does Replies |
DroidXE | Tuesday 14 March 2017 at 21:54 |
DroidXE
![]()
|
WarningThis update has not been approved yet by the team. MessageUpdated Installer to Wine 2.3. Game is playable, but has some graphical bugs.
mfg Differences@@ -1,55 +1,76 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : RoninDusette +# Date : (2017-03-14) +# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit +# Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 +# Game Version 7.20170206a.7 +# Author : DroidXE # Licence : GPLv3 -# PlayOnLinux: 4.2.7 - - +# PlayOnLinux: 4.2.10 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="NeverwinterOnline" -WINEVERSION="1.7.40" -TITLE="Neverwinter Online" + +PREFIX="NeverwinterOnlineTest" +WINEVERSION="2.3-staging" +TITLE="Neverwinter Online Test" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" +AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" - + #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + +# Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msvc100 +POL_Call POL_Install_vcrun2012 +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_physx + + + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} + # Configuration -Set_OS "winxp" - +Set_OS "win7" + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-03-14) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 1050 Ti]; GLX Version: 4.5.0 NVIDIA 378.13 # Game Version 7.20170206a.7 # Author : DroidXE # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnlineTest" WINEVERSION="2.3-staging" TITLE="Neverwinter Online Test" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx10 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 20 March 2017 at 15:05
|
Piperina | Sunday 22 January 2017 at 9:30 |
Piperina
![]()
|
MessageI've tried to install the program on my mac but it doesn' work. The wine requested is the 1.70.40 but in this version of Playonmac this wine is not present. Can you help me?
Replies |
DroidXE | Wednesday 18 January 2017 at 22:17 |
DroidXE
![]()
|
WarningThis update has not been approved yet by the team. MessageI modified the installer. The current release runs well on my PC.
mfg Differences@@ -1,55 +1,75 @@ #!/bin/bash -# Date : (2015-04-21) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : RoninDusette +# Date : (2017-01-18) +# Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit +# Graphics Card: NVIDIA GK106 [GeForce GTX 650 Ti]; GLX Version: 4.5.0 NVIDIA 375.26 +# Game Version 70.20161205a.9 +# Author : DroidXE # Licence : GPLv3 -# PlayOnLinux: 4.2.7 - - +# PlayOnLinux: 4.2.10 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" -AUTHOR="RoninDusette" +AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" - + #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix +POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" +# Dependencies +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dx11 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msvc100 +POL_Call POL_Install_vcrun2012 +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_physx + + + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} + # Configuration -Set_OS "winxp" - +Set_OS "win7" + # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" - + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" - + # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" - + POL_SetupWindow_Close + exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-01-18) # Distribution used to test : Linux Mint 18.1 Cinnamon 64-bit # Graphics Card: NVIDIA GK106 [GeForce GTX 650 Ti]; GLX Version: 4.5.0 NVIDIA 375.26 # Game Version 70.20161205a.9 # Author : DroidXE # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="DroidXE" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_SetArch "x64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dx11 POL_Call POL_Install_msxml3 POL_Call POL_Install_msvc100 POL_Call POL_Install_vcrun2012 POL_Call POL_Install_vcrun2013 POL_Call POL_Install_physx # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} # Configuration Set_OS "win7" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
anong | Thursday 17 November 2016 at 12:11 |
anong
![]()
|
Message[11/17/16 16:02:47] - Running wine-1.7.40 Neverwinter.exe (Working directory : /home/produser/.PlayOnLinux/wineprefix/NeverwinterOnline/drive_c/Program Files/Cryptic Studios) HELP ME PLEASE Replies |
tkvasager | Monday 27 July 2015 at 15:46 |
tkvasager
![]()
|
MessageI am having an issue running the install using the vanilla script that is default for Neverwinter Online. It appears to have difficulty downloading the setup.exe. It goes directly to a failed CRC check.
http://download.perfectworld.com/nw/neverwinter_setup.exe
Error ! Files mismatch
Local : 1fa1de40bf9231215f2c563c08837f20 Server: 9fa8430da0f8aa5c3cfc87d0e26c2d9f
Do you want to retry?
click yes and it flashes like it is going to download, showing the download progress bar, then displays the above error again.
Clicking yes repeatedly results in a fatal error.
Error in POL_Download Unable to download http://download.perfectworld.com/nw/neverwinter_setup.exe after 5 attempts I have reported as a bug, and put in a suggestion for what needs to be changed, I was wondering if you have experienced this recently? I loaded with out a problem using Xubuntu about a month ago, I reloaded to Fedora, tried to install yesterday, 27-07-2015 and received this error.
DE: xfce Distro: Fedora 22 RepliesMonday 27 July 2015 at 16:42
Monday 27 July 2015 at 17:11
Wednesday 5 August 2015 at 23:57
Thursday 6 August 2015 at 0:06
|
AMEER157 | Sunday 31 May 2015 at 17:46 |
AMEER157
![]()
|
MessageWorked great on my Ubuntu 14.04.2 LTS 64 Bit Just click the "Install this program button" and PlayOnLinux will take care of the dependencies and all the required files. NOTE: After you log into the game using your credentials. The splash screen "Cyrptic" will take about 10-15 mins to disappear. This happens only at the initial login and the game will load normaly next time. RepliesMonday 1 June 2015 at 3:33
Monday 1 June 2015 at 3:34
Monday 1 June 2015 at 3:38
Monday 1 June 2015 at 15:28
Monday 1 June 2015 at 15:31
Monday 1 June 2015 at 18:28
Tuesday 2 June 2015 at 3:01
Tuesday 2 June 2015 at 3:02
|
backad | Sunday 24 May 2015 at 19:25 |
backad
![]()
|
Message#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX= "NeverwinterOnline" WINEVERSION= "1.7.40" TITLE= "Neverwinter Online" EDITOR= "Perfect World Entertainment Inc." GAME_URL= "http://www.arcgames.com/en/games/neverwinter" AUTHOR= "RoninDusette" DOWNLOAD_URL= "http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Resolve bug of sources
POL_Install_corefonts
POL_Install_dxfullsetup POL_Install_d3dcompiler_43 POL_Install_tahoma # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 24 May 2015 at 19:26
Sunday 24 May 2015 at 21:26
Wednesday 8 July 2015 at 1:59
Wednesday 8 July 2015 at 2:50
|
Ronin DUSETTE | Thursday 7 May 2015 at 4:00 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageAdding message not to log in after initial installation. Differences@@ -37,6 +37,9 @@ POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" + POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not run $TITLE or log in after installation. Close any open windows so that PlayOnLinux can finish the install. ')" "$TITLE" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Wednesday 22 April 2015 at 8:31 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageUsing tmp folders. Totally forgot to do that. :) Differences@@ -34,6 +34,8 @@ Set_OS "winxp" # Installation +POL_System_TmpCreate "$PREFIX" +cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" @@ -41,6 +43,9 @@ # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" +# Cleanup +POL_System_TmpDelete + POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_System_TmpCreate "$PREFIX" cd $POL_System_TmpDir POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Wednesday 22 April 2015 at 8:08 |
Ronin DUSETTE
![]() Admin
|
WarningThis update has not been approved yet by the team. MessageInitial commit Differences@@ -0,0 +1,47 @@ +#!/bin/bash +# Date : (2015-04-21) +# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.7 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="NeverwinterOnline" +WINEVERSION="1.7.40" +TITLE="Neverwinter Online" +EDITOR="Perfect World Entertainment Inc." +GAME_URL="http://www.arcgames.com/en/games/neverwinter" +AUTHOR="RoninDusette" +DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +# Installation +POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" +POL_Wine "neverwinter_setup.exe" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcut +POL_Shortcut "Neverwinter.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-04-21) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.7 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="NeverwinterOnline" WINEVERSION="1.7.40" TITLE="Neverwinter Online" EDITOR="Perfect World Entertainment Inc." GAME_URL="http://www.arcgames.com/en/games/neverwinter" AUTHOR="RoninDusette" DOWNLOAD_URL="http://download.perfectworld.com/nw/neverwinter_setup.exe" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" # Installation POL_Download "$DOWNLOAD_URL" "9fa8430da0f8aa5c3cfc87d0e26c2d9f" POL_Wine "neverwinter_setup.exe" POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "Neverwinter.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE can take up to 15 minutes or longer to start for the first time. It only does this the first time the game has be ran.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |