Fortnite clone: Creative Destruction
Informatie
| Creator | Bericht | 
|---|---|
| 
                Dadu042
                 
  | 
            
                                        InformationThis installer has been approved by the team. InformatiePlatforms:   Feedbacks0 0 OmschrijvingMMO FPS, 2018, developped by NetEase. Website (file size: 3 GB). This script allow to install this game without to have to install Steam (and its release). Warning (Wine v5): the embedded web browser does crash when trying to login via Gmail. Workaround: fast click 'Log in via Browser' button at the top right of the window. SchermafdrukkenBroncode#!/bin/bash
# Date : (2019-09-11)
# 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:
#        - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053)
#
# Software based on: DirectX 9.
#
# CHANGELOG
# [Dadu042] (2019-09-11 09-00)
#   Initial writting.
# [Dadu042] (2021-10-16 09-00)
#   Wine 5.0.3 -> 6.0
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Creative Destruction"
PREFIX="Creative_Destruction"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="6.0.1"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL=""
      
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: Do finish 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 ""
        INSTALLER="$POL_System_TmpDir/setup.exe"
fi
    
POL_Shortcut "client.exe" "$TITLE" "" "" "Game;Shooter;"
POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0                 | 
        
Contributions
Filters:
Contribute| Member | Bericht | 
| Dadu042 | Dinsdag 7 Juni\ 2022 om 11:41 | 
| 
                    Dadu042
                     
  | 
                
                    InformationThis update has been approved by the team. Differences@@ -31,7 +31,7 @@ TITLE="Creative Destruction" PREFIX="Creative_Destruction" EDITOR="NetEase Games" -WORKING_WINE_VERSION="6.0" +WORKING_WINE_VERSION="6.0.1" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="" New source code#!/bin/bash
# Date : (2019-09-11)
# 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:
#        - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053)
#
# Software based on: DirectX 9.
#
# CHANGELOG
# [Dadu042] (2019-09-11 09-00)
#   Initial writting.
# [Dadu042] (2021-10-16 09-00)
#   Wine 5.0.3 -> 6.0
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Creative Destruction"
PREFIX="Creative_Destruction"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="6.0.1"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL=""
      
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: Do finish 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 ""
        INSTALLER="$POL_System_TmpDir/setup.exe"
fi
    
POL_Shortcut "client.exe" "$TITLE" "" "" "Game;Shooter;"
POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0                            Antwoorden | 
            
| Dadu042 | Zaterdag 16 October 2021 om 18:51 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. BerichtNot tested with POL (OK on Crossover v21 based on Wine 6), but should work. Differences@@ -15,6 +15,8 @@
 # CHANGELOG
 # [Dadu042] (2019-09-11 09-00)
 #   Initial writting.
+# [Dadu042] (2021-10-16 09-00)
+#   Wine 5.0.3 -> 6.0
 #
 # KNOWN ISSUES:
 #   Wine amd64 5.0.2: X
@@ -29,7 +31,7 @@
 TITLE="Creative Destruction"
 PREFIX="Creative_Destruction"
 EDITOR="NetEase Games"
-WORKING_WINE_VERSION="5.0.3"
+WORKING_WINE_VERSION="6.0"
 AUTHOR="Dadu042"
 GAME_VMS="512"
 GAME_URL=""
@@ -94,7 +96,7 @@
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
         cd "$POL_System_TmpDir"
-        POL_Download "https://g94na.gdl.netease.com/cyber_hunter_global_20200616.exe"
+        POL_Download ""
         INSTALLER="$POL_System_TmpDir/setup.exe"
 fi
     
                            New source code#!/bin/bash
# Date : (2019-09-11)
# 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:
#        - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053)
#
# Software based on: DirectX 9.
#
# CHANGELOG
# [Dadu042] (2019-09-11 09-00)
#   Initial writting.
# [Dadu042] (2021-10-16 09-00)
#   Wine 5.0.3 -> 6.0
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Creative Destruction"
PREFIX="Creative_Destruction"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="6.0"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL=""
      
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: Do finish 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 ""
        INSTALLER="$POL_System_TmpDir/setup.exe"
fi
    
POL_Shortcut "client.exe" "$TITLE" "" "" "Game;Shooter;"
POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0                            AntwoordenAangepast door Dadu042  | 
            
| Dadu042 | Woensdag 16 December 2020 om 13:24 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Differences@@ -29,7 +29,7 @@ TITLE="Creative Destruction" PREFIX="Creative_Destruction" EDITOR="NetEase Games" -WORKING_WINE_VERSION="5.0.2" +WORKING_WINE_VERSION="5.0.3" AUTHOR="Dadu042" GAME_VMS="512" GAME_URL="" New source code#!/bin/bash
# Date : (2019-09-11)
# 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:
#        - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053)
#
# Software based on: DirectX 9.
#
# CHANGELOG
# [Dadu042] (2019-09-11 09-00)
#   Initial writting.
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Creative Destruction"
PREFIX="Creative_Destruction"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="5.0.3"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL=""
      
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: Do finish 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 "client.exe" "$TITLE" "" "" "Game;Shooter;"
POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0                            Antwoorden | 
            
| Dadu042 | Vrijdag 11 September 2020 om 16:14 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. BerichtPlayed 15 minutes (tutorial, then 1 battle). Differences@@ -0,0 +1,107 @@ +#!/bin/bash +# Date : (2019-09-11) +# 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: +# - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053) +# +# Software based on: DirectX 9. +# +# CHANGELOG +# [Dadu042] (2019-09-11 09-00) +# Initial writting. +# +# KNOWN ISSUES: +# Wine amd64 5.0.2: X +# +# +# KNOWN ISSUES (FIXED): + + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Creative Destruction" +PREFIX="Creative_Destruction" +EDITOR="NetEase Games" +WORKING_WINE_VERSION="5.0.2" +AUTHOR="Dadu042" +GAME_VMS="512" +GAME_URL="" + +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: Do finish 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 "client.exe" "$TITLE" "" "" "Game;Shooter;" + +POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE" + +POL_System_TmpDelete +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2019-09-11)
# 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:
#        - creative_destruction_20200828.zip (auto upgraded to v3.0.36.1053)
#
# Software based on: DirectX 9.
#
# CHANGELOG
# [Dadu042] (2019-09-11 09-00)
#   Initial writting.
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Creative Destruction"
PREFIX="Creative_Destruction"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="5.0.2"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL=""
      
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: Do finish 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 "client.exe" "$TITLE" "" "" "Game;Shooter;"
POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0                            Antwoorden | 
            
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
 Installeer dit programma                        
