Cyber Hunter
Informations
| Créateur | Messages |
|---|---|
|
Dadu042
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience1 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. Captures d'écranCode source#!/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:
Contribuer| Membre | Messages |
| shokatsuo | Mardi 19 Janvier 2021 à 1:40 |
shokatsuo
|
MessagesThe "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" Réponses |
| Dadu042 | Lundi 18 Janvier 2021 à 10:48 |
|
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesWine 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" Nouveau code source#!/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 Réponses |
| Dadu042 | Lundi 12 Octobre 2020 à 15:41 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesBad 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" Nouveau code source#!/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 Réponses |
| Dadu042 | Lundi 12 Octobre 2020 à 15:39 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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
Nouveau code source#!/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 Réponses |
| Dadu042 | Jeudi 17 September 2020 à 21:22 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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
Nouveau code source#!/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
Réponses |
| Dadu042 | Mercredi 9 September 2020 à 20:16 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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. # Nouveau code source#!/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 Réponses |
| Dadu042 | Mardi 8 September 2020 à 19:35 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOnce 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. # Nouveau code source#!/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 Réponses |
| Dadu042 | Mardi 8 September 2020 à 18:36 |
|
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Installer ce programme 