Cyber Hunter
Informations
Creator | Message |
---|---|
Dadu042
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks1 0 DescriptionSci-fi MMO FPS, 2019. Wikipedia, Website (to download the Windows file). CRITICAL PROBLEM (as of 2020-09-08, Wine 5.17): once installed, the game does not load (same issue on AMD GPU and Intel HD 530). Tests reports welcome. Disk space required: at leat 8 GB. ScreenshotsSource code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' (4 GB) + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16, 5.17: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
shokatsuo | Tuesday 19 January 2021 at 1:40 |
shokatsuo
|
MessageThe "Cyber Hunter" game works perfect, but it is necessary to do some steps before its execution: When finishing the installation with the POL script (PlayOnLinux) some kind of error message may appear, if so, just ignore it. I have made use of wine-6.0-staging x86 from pol and changed the windows version to 10, with this I managed to install IE11 and be able to start session in the game with the browser of my preference. Note: In case you have problems logging in and IE11 doesn't help, remove the library with a name similar to "ie-explorer" Replies |
Dadu042 | Monday 18 January 2021 at 10:48 |
Dadu042
|
InformationThis update has been approved by the team. MessageWine 5.17 -> 6.0 (not tested). Differences@@ -31,7 +31,7 @@ TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" -WORKING_WINE_VERSION="5.17" +WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' (4 GB) + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16, 5.17: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Monday 12 October 2020 at 15:41 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageBad idea because the file is huge. Differences@@ -8,15 +8,13 @@ # Playonlinux version used : 4.3.4 # # Software version used to write this script: -# - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 +# - 'cyber_hunter_global_20200616.exe' (4 GB) + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. -# [Dadu042] (2020-10-12 09-00) -# Allow download installer. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. @@ -82,7 +80,7 @@ # Main part of this script # ####################################### -POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' (4 GB) + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16, 5.17: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.17" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Monday 12 October 2020 at 15:39 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -15,75 +15,77 @@ # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. +# [Dadu042] (2020-10-12 09-00) +# Allow download installer. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. -# Wine amd64 5.12, 5.16, 4.21-staging, 5.13-staging: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). +# Wine amd64 5.12, 5.16, 5.17: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): - - + + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" -WORKING_WINE_VERSION="5.0.2" +WORKING_WINE_VERSION="5.17" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" - + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." - + POL_Wine_SelectPrefix "$PREFIX" -# POL_System_SetArch "auto" +# POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" - + Set_OS "win7" - + ####################################### # Installing mandatory dependencies # ####################################### - + # TO try: set language english ? - + POL_Call POL_Install_d3dx9 - + # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet - + ################ # GPU # ################ - + # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS - + # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver - + # Useful for Nvidia GPUs -# POL_Call POL_Install_physx - - +# POL_Call POL_Install_physx + + ####################################### # Main part of this script # ####################################### - -POL_SetupWindow_InstallMethod "LOCAL" - + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" - + if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" @@ -92,19 +94,19 @@ POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" - + elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi - + POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" - + POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" - + POL_System_TmpDelete POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # [Dadu042] (2020-10-12 09-00) # Allow download installer. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16, 5.17: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.17" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Thursday 17 September 2020 at 21:22 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -18,16 +18,16 @@ # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. -# Wine amd64 5.12, 5.16: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). +# Wine amd64 5.12, 5.16, 4.21-staging, 5.13-staging: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): - - + + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" @@ -35,55 +35,55 @@ AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" - + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." - + POL_Wine_SelectPrefix "$PREFIX" -# POL_System_SetArch "auto" +# POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" - + Set_OS "win7" - + ####################################### # Installing mandatory dependencies # ####################################### - + # TO try: set language english ? - + POL_Call POL_Install_d3dx9 - + # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet - + ################ # GPU # ################ - + # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS - + # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver - + # Useful for Nvidia GPUs -# POL_Call POL_Install_physx - - +# POL_Call POL_Install_physx + + ####################################### # Main part of this script # ####################################### - + POL_SetupWindow_InstallMethod "LOCAL" - + # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" - + if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" @@ -92,19 +92,19 @@ POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" - + elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi - + POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" - + POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" - + POL_System_TmpDelete POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16, 4.21-staging, 5.13-staging: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.0.2" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Wednesday 9 September 2020 at 20:16 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -18,7 +18,7 @@ # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. -# Wine amd64 5.12: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). +# Wine amd64 5.12, 5.16: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12, 5.16: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.0.2" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Tuesday 8 September 2020 at 19:35 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageOnce installed it does not launch. Differences@@ -7,7 +7,8 @@ # Program licence : Retail # Playonlinux version used : 4.3.4 # -# Software version used to write this script (version.txt): 1.201768.201136.201768 +# Software version used to write this script: +# - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script: # - 'cyber_hunter_global_20200616.exe' + a 800 MB update autodownloaded. Version.txt: 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.0.2" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Tuesday 8 September 2020 at 18:36 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,109 @@ +#!/bin/bash +# Date : (2019-09-08) +# Last revision : See changelog +# Wine version used : see below +# Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) +# Script licence : GPL3 +# Program licence : Retail +# Playonlinux version used : 4.3.4 +# +# Software version used to write this script (version.txt): 1.201768.201136.201768 +# +# Software based on: DirectX 9 (v43), vcrun2010. +# +# CHANGELOG +# [Dadu042] (2019-09-08 09-00) +# Initial writting. +# +# KNOWN ISSUES: +# Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. +# Wine amd64 5.12: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). +# +# Same 'fail to launch' issue in 32 bits mode. +# +# KNOWN ISSUES (FIXED): + + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Cyber Hunter" +PREFIX="CyberHunter" +EDITOR="NetEase Games" +WORKING_WINE_VERSION="5.0.2" +AUTHOR="Dadu042" +GAME_VMS="512" +GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." + +POL_Wine_SelectPrefix "$PREFIX" +# POL_System_SetArch "auto" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +POL_System_TmpCreate "$TITLE" + +Set_OS "win7" + +####################################### +# Installing mandatory dependencies # +####################################### + +# TO try: set language english ? + +POL_Call POL_Install_d3dx9 + +# POL_Call POL_Install_vcrun2010 +# POL_Call POL_Install_wininet + +################ +# GPU # +################ + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Useful for Nvidia GPUs +# POL_Call POL_Install_physx + + +####################################### +# Main part of this script # +####################################### + +POL_SetupWindow_InstallMethod "LOCAL" + +# POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" + SETUP_EXE="$APP_ANSWER" + POL_Wine start /unix "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" + cd "$POL_System_TmpDir" + +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" + INSTALLER="$POL_System_TmpDir/setup.exe" +fi + +POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" +# POL_Shortcut_Document "$TITLE" "readme.txt" + +POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" + +POL_System_TmpDelete +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2019-09-08) # Last revision : See changelog # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 (Linux kernel v5.4) # Script licence : GPL3 # Program licence : Retail # Playonlinux version used : 4.3.4 # # Software version used to write this script (version.txt): 1.201768.201136.201768 # # Software based on: DirectX 9 (v43), vcrun2010. # # CHANGELOG # [Dadu042] (2019-09-08 09-00) # Initial writting. # # KNOWN ISSUES: # Wine amd64 5.0.2, 4.0.4, 4.21: game (launcher.exe) fail to launch (nothing happens). Tried: bin/client.exe (same issue), d3dx9_43 + compiler, d3dx9, directx9, DXVK_171, d3dcompiler_46, d3dcompiler_47. # Wine amd64 5.12: game (launcher.exe) fail to launch (crash window, clicking the button Details does only close the window). Tried: bin/client.exe (same issue). # # Same 'fail to launch' issue in 32 bits mode. # # KNOWN ISSUES (FIXED): [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Cyber Hunter" PREFIX="CyberHunter" EDITOR="NetEase Games" WORKING_WINE_VERSION="5.0.2" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="https://en.wikipedia.org/wiki/Cyber_Hunter" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion 4.3.0 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_Wine_SelectPrefix "$PREFIX" # POL_System_SetArch "auto" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" Set_OS "win7" ####################################### # Installing mandatory dependencies # ####################################### # TO try: set language english ? POL_Call POL_Install_d3dx9 # POL_Call POL_Install_vcrun2010 # POL_Call POL_Install_wininet ################ # GPU # ################ # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Useful for Nvidia GPUs # POL_Call POL_Install_physx ####################################### # Main part of this script # ####################################### POL_SetupWindow_InstallMethod "LOCAL" # POL_SetupWindow_message "IMPORTANT: End the installation before to try to play." "$TITLE" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "Please select the .EXE file:" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe" INSTALLER="$POL_System_TmpDir/setup.exe" fi POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;Shooter;" # POL_Shortcut_Document "$TITLE" "readme.txt" POL_Shortcut "bin\client.exe" "$TITLE - Bin\Client" "" "" "Game;Shooter;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com