Revelation Online
Informations
| Creator | Message | 
|---|---|
| Dadu042   
 | WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms:   Feedbacks0 0 DescriptionMMO RPG, 2017. Website. Game size: 30 GB. Warning: after clicking the yellow button Play, error 'Game start error. General failure'. Warning: this game can not run without the 'MY.GAMES GamesCenter' (that currently fail to pass the Login window, as of 2020-09). Workaround: Wine 4.21-staging . Perhaps Wine 5.0.2-staging may help. ScreenshotsSource code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: Chrome web browser.
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
# [Dadu042] (2019-09-22 10-00)
#   Arch auto -> amd64
#
# KNOWN ISSUES:
#   Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet
#                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ?
#   Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging
#   Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus
#   Wine amd64 4.21-staging, 5.18-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#
# KNOWN ISSUES (FIXED):
#   Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198).
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 4.21-staging, 5.9-staging
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: the background of the launcher is empty (no web content displayed). Fix: Wine 4.21-staging
#   Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b
#   Wine amd64 up to 5.18-staging: when exiting the debug log shows lines containing '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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 "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
Set_OS "win7"
 
#######################################
#  Installing mandatory dependencies  #
#######################################
POL_Call POL_Install_corefonts
# Required at least up to Wine 5.18-staging
POL_Call POL_Install_riched30
# 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: 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://static.gc.my.games/RevelationOnlineLoader_en.exe"
        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
# 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 | Message | 
| Dadu042 | Saturday 3 October 2020 at 10:14 | 
| Dadu042   
 | InformationThis update has been approved by the team. Differences@@ -88,18 +88,17 @@
 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,DOWNLOAD" 
-POL_SetupWindow_InstallMethod "LOCAL"
- 
-POL_SetupWindow_message "IMPORTANT: Do finish the installation before to try to play." "$TITLE"
- 
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+POL_SetupWindow_message "IMPORTANT: Do finish the installation before to try to play." "$TITLE" 
+
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
         cd "$HOME"
@@ -113,14 +112,14 @@
 then
         cd "$POL_System_TmpDir"
         POL_Download "https://static.gc.my.games/RevelationOnlineLoader_en.exe"
-#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
+        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
         POL_Wine start /unix "RevelationOnlineLoader_en.exe"
         POL_Wine_WaitExit "$TITLE"
 fi
     
 POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
 
-POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
+# 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
New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: Chrome web browser.
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
# [Dadu042] (2019-09-22 10-00)
#   Arch auto -> amd64
#
# KNOWN ISSUES:
#   Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet
#                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ?
#   Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging
#   Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus
#   Wine amd64 4.21-staging, 5.18-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#
# KNOWN ISSUES (FIXED):
#   Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198).
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 4.21-staging, 5.9-staging
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: the background of the launcher is empty (no web content displayed). Fix: Wine 4.21-staging
#   Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b
#   Wine amd64 up to 5.18-staging: when exiting the debug log shows lines containing '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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 "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
Set_OS "win7"
 
#######################################
#  Installing mandatory dependencies  #
#######################################
POL_Call POL_Install_corefonts
# Required at least up to Wine 5.18-staging
POL_Call POL_Install_riched30
# 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: 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://static.gc.my.games/RevelationOnlineLoader_en.exe"
        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
# 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 0Replies | 
| Dadu042 | Saturday 3 October 2020 at 10:10 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -23,18 +23,19 @@ # Arch auto -> amd64 # # KNOWN ISSUES: -# Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message). # Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet # Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out). # Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ? # Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging # Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus +# Wine amd64 4.21-staging, 5.18-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message). # # KNOWN ISSUES (FIXED): # Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198). -# Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 5.9-staging +# Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 4.21-staging, 5.9-staging +# Wine amd64 5.0.2, 5.16, 5.17, 4.21: the background of the launcher is empty (no web content displayed). Fix: Wine 4.21-staging # Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b -# Wine amd64 up to 5.18-staging: when exiting the debug lof shows lines about '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30 +# Wine amd64 up to 5.18-staging: when exiting the debug log shows lines containing '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30 [ -z "$PLAYONLINUX" ] && exit 0 @@ -123,4 +124,4 @@ POL_System_TmpDelete POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: Chrome web browser.
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
# [Dadu042] (2019-09-22 10-00)
#   Arch auto -> amd64
#
# KNOWN ISSUES:
#   Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet
#                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ?
#   Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging
#   Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus
#   Wine amd64 4.21-staging, 5.18-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#
# KNOWN ISSUES (FIXED):
#   Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198).
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 4.21-staging, 5.9-staging
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: the background of the launcher is empty (no web content displayed). Fix: Wine 4.21-staging
#   Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b
#   Wine amd64 up to 5.18-staging: when exiting the debug log shows lines containing '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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 "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
Set_OS "win7"
 
#######################################
#  Installing mandatory dependencies  #
#######################################
POL_Call POL_Install_corefonts
# Required at least up to Wine 5.18-staging
POL_Call POL_Install_riched30
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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 0Replies | 
| Dadu042 | Friday 2 October 2020 at 19:22 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -10,7 +10,7 @@
 # Software version used to write this script:
 #        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
 #
-# Software based on: X
+# Software based on: Chrome web browser.
 #
 #
 #
@@ -19,18 +19,24 @@
 #   Initial writting.
 # [Dadu042] (2019-09-17 18-00)
 #   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
+# [Dadu042] (2019-09-22 10-00)
+#   Arch auto -> amd64
 #
 # KNOWN ISSUES:
 #   Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
-#   Wine amd64 5.8-staging, 5.9-staging: after clicking the yellow button Play the Game Center does freeze.
+#   Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet
 #                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
-#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze.
-#   Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box).
-#
+#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ?
+#   Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging
+#   Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus
 #
 # KNOWN ISSUES (FIXED):
- 
- 
+#   Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198).
+#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 5.9-staging
+#   Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b
+#   Wine amd64 up to 5.18-staging: when exiting the debug lof shows lines about '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30
+
+
 [ -z "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
    
@@ -50,8 +56,8 @@
 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_System_SetArch "auto"
+POL_System_SetArch "amd64"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 POL_System_TmpCreate "$TITLE"
  
@@ -63,6 +69,9 @@
 
 POL_Call POL_Install_corefonts
 
+# Required at least up to Wine 5.18-staging
+POL_Call POL_Install_riched30
+
 # POL_Call POL_Install_d3dx9
 # POL_Call POL_Install_vcrun2010
 # POL_Call POL_Install_wininet
@@ -114,4 +123,4 @@
 
 POL_System_TmpDelete
 POL_SetupWindow_Close
-exit 0
\ No newline at end of file
+exit 0
New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: Chrome web browser.
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
# [Dadu042] (2019-09-22 10-00)
#   Arch auto -> amd64
#
# KNOWN ISSUES:
#   Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#   Wine amd64 5.8-staging, 5.9-staging, 5.17-staging: after clicking the yellow button Play the Game Center does freeze. Tried: wininet
#                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. Tried: dwrite n,b. Fix: wine 4.21-staging ?
#   Wine amd64 4.21, 5.17: after clicking 'Play' (yellow button) the game show a window 'Game integrity test', then display a empty window 'Login' with the busy sign (circle) is turning forever. Fix: Wine 5.18-staging and 4.21-staging
#   Wine amd64 5.18-staging: in the login window, the characters typed by the user are not displayed. Tried: gdiplus
#
# KNOWN ISSUES (FIXED):
#   Wine amd64 5.0.2, 5.16: 'ERROR:network_change_notifier_win.cc(141)] WSALookupServiceBegin failed with: 0'. Seems related to bcrypt, fixable with Wine-staging (according: https://forum.winehq.org/viewtopic.php?t=29792&p=113198).
#   Wine amd64 5.0.2, 5.16, 5.17, 4.21: some characters are missing (ie: in the yellow box). Fix: Wine 5.9-staging
#   Wine amd64 5.9-staging: 'err:module:import_dll Library DWrite.dll (which is needed by L"C:\\users\\user-name\\Local Settings\\Application Data\\GameCenter\\Chrome\\80.3987.2146\\libcef.dll") not found'. Fix: dwrite: n,b
#   Wine amd64 up to 5.18-staging: when exiting the debug lof shows lines about '[\\ObjectTypes\\XXXXXXXXX] Object type'. Fix: riched30
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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 "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
Set_OS "win7"
 
#######################################
#  Installing mandatory dependencies  #
#######################################
POL_Call POL_Install_corefonts
# Required at least up to Wine 5.18-staging
POL_Call POL_Install_riched30
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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
Replies | 
| Dadu042 | Monday 21 September 2020 at 18:31 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -22,6 +22,8 @@ # # KNOWN ISSUES: # Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message). +# Wine amd64 5.8-staging, 5.9-staging: after clicking the yellow button Play the Game Center does freeze. +# Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out). # Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. # Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box). # New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: X
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
#
# KNOWN ISSUES:
#   Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#   Wine amd64 5.8-staging, 5.9-staging: after clicking the yellow button Play the Game Center does freeze.
#                        Note: the current POL's staging releases 5.10 and 5.11 does fail to run (0214:err:ntdll:RtlpWaitForCriticalSection section 0xxxxxxx "../../../dlls/ntdll/heap.c: main process heap section" wait timed out).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze.
#   Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box).
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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  #
#######################################
POL_Call POL_Install_corefonts
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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 0Replies | 
| Dadu042 | Thursday 17 September 2020 at 18:33 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -18,9 +18,10 @@ # [Dadu042] (2019-09-16 10-00) # Initial writting. # [Dadu042] (2019-09-17 18-00) -# Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in Allods script). +# Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script). # # KNOWN ISSUES: +# Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message). # Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze. # Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box). # New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: X
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in the Allods script).
#
# KNOWN ISSUES:
#   Wine amd64 4.21-staging: after clicking the yellow button Play, error 'Game start error. General failure. File name: ... tianyu.exe'. Tried: running manually 'tianyu64.exe' (I get a chinese error message).
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze.
#   Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box).
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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  #
#######################################
POL_Call POL_Install_corefonts
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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 0RepliesMonday 21 September 2020 at 18:01                                                                                     | 
| Dadu042 | Thursday 17 September 2020 at 18:12 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -8,7 +8,7 @@
 # Playonlinux version used : 4.3.4
 #
 # Software version used to write this script:
-#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe (2020-09-16)
+#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
 #
 # Software based on: X
 #
@@ -17,9 +17,12 @@
 # CHANGELOG
 # [Dadu042] (2019-09-16 10-00)
 #   Initial writting.
+# [Dadu042] (2019-09-17 18-00)
+#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in Allods script).
 #
 # KNOWN ISSUES:
-#   Wine amd64 5.0.2: X
+#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze.
+#   Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box).
 #
 #
 # KNOWN ISSUES (FIXED):
@@ -30,8 +33,8 @@
    
 TITLE="Revelation Online"
 PREFIX="Revelation_Online"
-EDITOR="NetEase Games"
-WORKING_WINE_VERSION="5.0.2"
+EDITOR="My.games"
+WORKING_WINE_VERSION="4.21-staging"
 AUTHOR="Dadu042"
 GAME_VMS="512"
 GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
@@ -55,8 +58,7 @@
 #  Installing mandatory dependencies  #
 #######################################
 
-# Requiered to display the user licence agreement (game: LifeAfter)
-# POL_Call POL_Install_corefonts
+POL_Call POL_Install_corefonts
 
 # POL_Call POL_Install_d3dx9
 # POL_Call POL_Install_vcrun2010
New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe on the Gamecenter: 'Version 1129.52a of 13.09.2020').
#
# Software based on: X
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
# [Dadu042] (2019-09-17 18-00)
#   Wine 5.0.2 -> 4.21-staging (should allow to login and to play, like in Allods script).
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2, 5.16, 4.21: after accepting the EULA, the Login window that appears is empty and freeze.
#   Wine amd64 5.0.2, 5.16, 4.21: some characters are missing (ie: in the yellow box).
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="My.games"
WORKING_WINE_VERSION="4.21-staging"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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  #
#######################################
POL_Call POL_Install_corefonts
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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 0Replies | 
| Dadu042 | Wednesday 16 September 2020 at 15:14 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -103,7 +103,7 @@
         POL_Wine_WaitExit "$TITLE"
 fi
     
-POL_Shortcut "launcher.exe" "$TITLE (Launcher)" "" "" "Game;"
+POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
 
 POL_SetupWindow_message "$(eval_gettext 'WARNING: to avoid to get a huge log file, you should type \ninto Debug flags: fixme-all')" "$TITLE"
 
New source code#!/bin/bash
# Date : (2019-09-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe (2020-09-16)
#
# Software based on: X
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="5.0.2"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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  #
#######################################
# Requiered to display the user licence agreement (game: LifeAfter)
# POL_Call POL_Install_corefonts
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "GameCenter.exe" "$TITLE" "" "" "Game;"
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 0Replies | 
| Dadu042 | Wednesday 16 September 2020 at 15:02 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,112 @@ +#!/bin/bash +# Date : (2019-09-16) +# 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: +# - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe (2020-09-16) +# +# Software based on: X +# +# +# +# CHANGELOG +# [Dadu042] (2019-09-16 10-00) +# Initial writting. +# +# KNOWN ISSUES: +# Wine amd64 5.0.2: X +# +# +# KNOWN ISSUES (FIXED): + + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Revelation Online" +PREFIX="Revelation_Online" +EDITOR="NetEase Games" +WORKING_WINE_VERSION="5.0.2" +AUTHOR="Dadu042" +GAME_VMS="512" +GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online" + +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 # +####################################### + +# Requiered to display the user licence agreement (game: LifeAfter) +# POL_Call POL_Install_corefonts + +# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe" +# INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe" + POL_Wine start /unix "RevelationOnlineLoader_en.exe" + POL_Wine_WaitExit "$TITLE" +fi + +POL_Shortcut "launcher.exe" "$TITLE (Launcher)" "" "" "Game;" + +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-16)
# 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:
#        - RevelationOnlineLoader_cd2a61df604870163855d2fbec38df4a__en.exe (2020-09-16)
#
# Software based on: X
#
#
#
# CHANGELOG
# [Dadu042] (2019-09-16 10-00)
#   Initial writting.
#
# KNOWN ISSUES:
#   Wine amd64 5.0.2: X
#
#
# KNOWN ISSUES (FIXED):
 
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Revelation Online"
PREFIX="Revelation_Online"
EDITOR="NetEase Games"
WORKING_WINE_VERSION="5.0.2"
AUTHOR="Dadu042"
GAME_VMS="512"
GAME_URL="https://www.pcgamingwiki.com/wiki/Revelation_Online"
      
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  #
#######################################
# Requiered to display the user licence agreement (game: LifeAfter)
# POL_Call POL_Install_corefonts
# 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_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://static.gc.my.games/RevelationOnlineLoader_en.exe"
#        INSTALLER="$POL_System_TmpDir/RevelationOnlineLoader_en.exe"
        POL_Wine start /unix "RevelationOnlineLoader_en.exe"
        POL_Wine_WaitExit "$TITLE"
fi
    
POL_Shortcut "launcher.exe" "$TITLE (Launcher)" "" "" "Game;"
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 0Replies | 
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
 Install this program
 Install this program                        
