Rift
Informations
Créateur | Messages |
---|---|
Tutul
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience4 2 DescriptionCaptures d'écranCode source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : see changelog # Wine version used : see changelog # Distribution used to test : Xubuntu 18.04 64 bits # Author : Tutul # License : GNU/GPL v3 # CHANGELOG # [Tutul] (2014-10-28 14:30) # Initial script. Wine 1.7.10 # [Tutul] (2014-11-20 16:37) # ?. Wine 1.7.29, Fedora 20 - 64 bits # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. # [Dadu042] (2020-09-24 16:00) # Download feature: MD5 checksum updated. # Wine 2.22 -> 3.0.3 (tested: installer). ## Beta script ## # TODO (2014) : correct the crash when loading acount for the second time. [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="3.0.3" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "9e2360e9d48deee6dc08d77175f41565" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe file cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash (2014) POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete # Closing POL POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 24 September 2020 à 18:42 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,16 +1,16 @@ #!/bin/bash # Date : (2014-10-28 14:30) # Last revision : see changelog -# Wine version used : 1.7.10 - 1.7.29 -# Distribution used to test : Fedora 20 - 64 bits +# Wine version used : see changelog +# Distribution used to test : Xubuntu 18.04 64 bits # Author : Tutul # License : GNU/GPL v3 # CHANGELOG # [Tutul] (2014-10-28 14:30) -# Initial script. +# Initial script. Wine 1.7.10 # [Tutul] (2014-11-20 16:37) -# ? +# ?. Wine 1.7.29, Fedora 20 - 64 bits # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. # [Dadu042] (2020-09-24 16:00) Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : see changelog # Wine version used : see changelog # Distribution used to test : Xubuntu 18.04 64 bits # Author : Tutul # License : GNU/GPL v3 # CHANGELOG # [Tutul] (2014-10-28 14:30) # Initial script. Wine 1.7.10 # [Tutul] (2014-11-20 16:37) # ?. Wine 1.7.29, Fedora 20 - 64 bits # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. # [Dadu042] (2020-09-24 16:00) # Download feature: MD5 checksum updated. # Wine 2.22 -> 3.0.3 (tested: installer). ## Beta script ## # TODO (2014) : correct the crash when loading acount for the second time. [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="3.0.3" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "9e2360e9d48deee6dc08d77175f41565" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe file cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash (2014) POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete # Closing POL POL_SetupWindow_Close exit 0 RéponsesSamedi 3 Octobre 2020 à 15:26
|
Dadu042 | Jeudi 24 September 2020 à 17:22 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -5,7 +5,7 @@ # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 - + # CHANGELOG # [Tutul] (2014-10-28 14:30) # Initial script. @@ -13,14 +13,16 @@ # ? # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. - - +# [Dadu042] (2020-09-24 16:00) +# Download feature: MD5 checksum updated. +# Wine 2.22 -> 3.0.3 (tested: installer). + ## Beta script ## -# TODO (2014) : correct crash when loading acount for the second time - +# TODO (2014) : correct the crash when loading acount for the second time. + [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" - + TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" @@ -28,56 +30,56 @@ AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" - + # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 - + # Starting debugging API POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Setting Wine Version -WORKING_WINE_VERSION="2.22" - +WORKING_WINE_VERSION="3.0.3" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" - + # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - + # Create TMP directory POL_System_TmpCreate "$PREFIX" - + # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS - + # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver - + # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact - + # Fix Installer crash Set_OS "winxp" - + # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" - + # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Donwloading client + # Downloading client cd "$POL_System_TmpDir" - POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" + POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "9e2360e9d48deee6dc08d77175f41565" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then - # Asking for client exe + # Asking for client exe file cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" @@ -85,11 +87,11 @@ POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi - -# Fix Glyph launch crash + +# Fix Glyph launch crash (2014) POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 - + # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then @@ -100,27 +102,27 @@ POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" - + # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" - + # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 - + # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi - + # Deleting temp files POL_System_TmpDelete - + # Closing POL POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : see changelog # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 # CHANGELOG # [Tutul] (2014-10-28 14:30) # Initial script. # [Tutul] (2014-11-20 16:37) # ? # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. # [Dadu042] (2020-09-24 16:00) # Download feature: MD5 checksum updated. # Wine 2.22 -> 3.0.3 (tested: installer). ## Beta script ## # TODO (2014) : correct the crash when loading acount for the second time. [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="3.0.3" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "9e2360e9d48deee6dc08d77175f41565" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe file cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash (2014) POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete # Closing POL POL_SetupWindow_Close exit 0 Réponses |
Dadu042 | Jeudi 16 Janvier 2020 à 0:01 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,13 +1,22 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-11-20 16:37) +# Last revision : see changelog # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 - + +# CHANGELOG +# [Tutul] (2014-10-28 14:30) +# Initial script. +# [Tutul] (2014-11-20 16:37) +# ? +# [Dadu042] (2020-01-15 22:50) +# Wine 1.7.29 -> 2.22, because outdated. + + ## Beta script ## -# TODO : correct crash when loading acount for the second time +# TODO (2014) : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" @@ -31,7 +40,7 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version -WORKING_WINE_VERSION="1.7.29" +WORKING_WINE_VERSION="2.22" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" @@ -112,6 +121,6 @@ # Deleting temp files POL_System_TmpDelete -#Closing POL +# Closing POL POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : see changelog # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 # CHANGELOG # [Tutul] (2014-10-28 14:30) # Initial script. # [Tutul] (2014-11-20 16:37) # ? # [Dadu042] (2020-01-15 22:50) # Wine 1.7.29 -> 2.22, because outdated. ## Beta script ## # TODO (2014) : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="2.22" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete # Closing POL POL_SetupWindow_Close exit 0 Réponses |
terryc | Mardi 22 Décembre 2015 à 0:34 |
terryc
|
MessagesCan anyone give me an idea of why this non start error suddenly occurs? This is my sixth fresh complete reinstall of Rift from the scrip, and they all end up with this non- start situation.[Code] [12/22/15 10:29:51] - Running wine-1.7.44 GlyphClient.exe (Working directory : /home/terryc/.PlayOnLinux/wineprefix/Rift/drive_c/Program Files/Glyph)
{/code] RéponsesMercredi 23 Décembre 2015 à 4:08
|
Mel7 | Lundi 21 September 2015 à 16:27 |
Mel7
|
MessagesBonjour, Le lien sur le bouton "Install this program" ne fonctionne pas. Comment procéder pour installer Rift avec le code source svp ? Merci d'avance. ************************* (Google traduction) Hello, RéponsesLundi 21 September 2015 à 23:26
Mercredi 23 September 2015 à 12:15
Vendredi 25 September 2015 à 21:09
Samedi 26 September 2015 à 7:30
Edité par Tinou |
terryc | Lundi 27 Juillet 2015 à 13:56 |
terryc
|
MessagesFor most of July(I've tried it a few times], the installation fails on a checksum of the downloaded installation files for Glyph. Probably the installation file has been changed in a recent upgrade. RéponsesMercredi 29 Juillet 2015 à 5:03
Mercredi 29 Juillet 2015 à 5:04
Mercredi 29 Juillet 2015 à 5:05
Mercredi 9 September 2015 à 2:13
Mercredi 9 September 2015 à 2:15
Mercredi 9 September 2015 à 2:16
Mercredi 9 September 2015 à 2:17
Mercredi 9 September 2015 à 2:20
Mercredi 9 September 2015 à 2:22
Mercredi 9 September 2015 à 12:14
Samedi 12 September 2015 à 4:16
Samedi 19 September 2015 à 7:45
Samedi 24 Octobre 2015 à 15:14
Jeudi 19 Novembre 2015 à 4:42
|
Treki26 | Mercredi 15 Juillet 2015 à 23:21 |
Treki26
|
MessagesThe game works well all the way up untill actual gameplay for me. Once the intro cutsene ends the screen starts flickering between the final frame of the cutscene and the starting zone. I can move my charceter around and open menus but the flickering is making the game unplayable. RéponsesJeudi 16 Juillet 2015 à 0:45
|
ravery | Mercredi 8 Juillet 2015 à 5:32 |
ravery
|
MessagesI would get random lock ups with new udates to Rift. So manually installed following your script, except I used wine ver 1.7.44 and added these additionall dlls as native msvcr120, msvcp110, and msvcp120. I also had to add registry key ==> HKEY_CURRENT_USER > Software > Wine > Direct3D > CSMT enabled to fix objects blinking black. it runs perfectly, can even play while it loads. ----------------------------------------------------------- Toshiba Satallite C55 series. Celeron dual core, intell graphics, 4G RAM Dual boot win8.1/kubuntu 14.10 in UEFI secure boot mode.
Réponses |
petch | Dimanche 19 Avril 2015 à 22:06 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSet msvcr120 override to native Install d3dcompiler_43 Differences@@ -51,6 +51,7 @@ # Install mandatory dependencies POL_Call POL_Install_d3dx9 +POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact @@ -78,6 +79,7 @@ # Fix Glyph launch crash POL_Call POL_Function_OverrideDLL native,builtin msvcr110 +POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-20 16:37) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash POL_Call POL_Function_OverrideDLL native,builtin msvcr110 POL_Call POL_Function_OverrideDLL native msvcr120 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 RéponsesSamedi 9 Mai 2015 à 2:14
Samedi 9 Mai 2015 à 2:15
Samedi 9 Mai 2015 à 2:15
Samedi 9 Mai 2015 à 12:28
Edité par petch |
jeromerobert | Dimanche 19 Avril 2015 à 20:32 |
jeromerobert
|
MessagesSince 3.2, msvcr120 must be set as native to avoid a crash when clicking on any player face. msvcr120 is already included with Rift. Réponses |
petch | Dimanche 19 Avril 2015 à 18:52 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd xact component Differences@@ -52,6 +52,7 @@ # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font +POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-20 16:37) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font POL_Call POL_Install_xact # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash POL_Call POL_Function_OverrideDLL native,builtin msvcr110 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 Réponses |
jeromerobert | Dimanche 19 Avril 2015 à 18:40 |
jeromerobert
|
MessagesThe game runs well but starting with 3.2 update there is no sound anymore. A workaround is: winetricks xact_jun2010 Credit: Lynx3d Original thread: http://forums.riftgame.com/technical-discussions/tech-support/460830-no-sound-crossover-mac-since-patch.html Réponses |
Achariel | Lundi 23 Février 2015 à 22:34 |
Achariel
|
MessagesBonjour,
Problème j'ai une Ubuntu 14.0.4 et quand j'install rift il fige des que le jeu se lance.
Je peux faire la mise à jour et glyph se lance sans problème. Réponses |
Olies | Dimanche 18 Janvier 2015 à 15:46 |
Olies
|
MessagesJ'ai voulu lancer le jeu sur mon Mac Book Pro qui tourne sous Yosemite Le jeu semble cracher dès que le chargement atteind "Selection de l'authentificatin accepté". Ce qui est dommage car le reste semble plutôt bien marché, de même, la vidéo d'introduction tournait impeccablement mais maintenant en écran noir avec juste le son.
Réponses |
Raiderwolf | Jeudi 18 Décembre 2014 à 3:55 |
Raiderwolf
|
MessagesWell, I spoke too soon. It was working, but now it hangs during loading the game. Réponses |
Raiderwolf | Jeudi 18 Décembre 2014 à 3:09 |
Raiderwolf
|
MessagesI would not say it runs well. It runs, but my main concern is it is very choppy. However, it was having problems at launch where was hanging. But obviously due to Tutul's hard work has made Glyph/Rift runnable. However, his derogatory and disrepectful avatar against Jesus violates your Terms of Use as being at the minimum a violation of "You must respect basic rules of politeness." If he wants to demean Jesus, which is what his avatar does, is this the place for it? Réponses |
Tutul | Jeudi 20 Novembre 2014 à 16:57 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe game can run normally if you set it on low graphic (checkbox in graphic settings). Test on Steam version and no-STeam version.
- Fix Glyph launch crash (Glyph update use msvcr110.dll now) - Fix new MD5 for installer - Test smaller script without POL_Call POL_Install_vcrun2008 and POL_Call POL_Install_vcrun2005 (not used anymore) Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-11-09 21:30) +# Last revision : (2014-11-20 16:37) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul @@ -50,8 +50,6 @@ POL_Wine_SetVideoDriver # Install mandatory dependencies -POL_Call POL_Install_vcrun2005 -POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font @@ -63,28 +61,31 @@ # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Donwloading client - cd "$POL_System_TmpDir" - POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" - SETUP_EXE="GlyphInstall-0-1.exe" + # Donwloading client + cd "$POL_System_TmpDir" + POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" + SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" else - POL_Call POL_Install_steam - POL_Call POL_Install_steam_flags "$STEAM_ID" + POL_Call POL_Install_steam + POL_Call POL_Install_steam_flags "$STEAM_ID" fi - + +# Fix Glyph launch crash +POL_Call POL_Function_OverrideDLL native,builtin msvcr110 + # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then - POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" - cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" - POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID + POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" + POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else - POL_Wine $SETUP_EXE + POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" @@ -97,12 +98,12 @@ # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 - + # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then - POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" + POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else - POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" + POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-20 16:37) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "3f0633e9c0af6b49748467acb6b66595" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Fix Glyph launch crash POL_Call POL_Function_OverrideDLL native,builtin msvcr110 # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 RéponsesEdité par Tutul |
Tutul | Dimanche 9 Novembre 2014 à 21:29 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd image and fix intro crash ------------------------------- Other problem, see below Differences@@ -1,13 +1,12 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-11-04 11:23) +# Last revision : (2014-11-09 21:30) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## -# TODO : correct crash in intro # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 @@ -22,7 +21,7 @@ STEAM_ID="39120" # Starting the script -#POL_GetSetupImages "" "" "$TITLE" No image uploaded for now +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 @@ -95,6 +94,9 @@ POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" + +# Fix intro bug +POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-09 21:30) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 Réponses |
Tutul | Samedi 8 Novembre 2014 à 9:46 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messages- Fix intro bug and crash - The game freeze less often -------------------------------- - The game may crash during charactere loading. Two solutions : -> Restart, after a few restart, the game may start correctly -> Delete "$WINEPREFIX/Rift/drive_c/users/$USER/Application Data/RIFT/*" (working on it) ($WINEPREFIX is the "wineprefix" directory in the PlayOnLinux/PlayOnMac directory) Differences@@ -1,13 +1,12 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-11-04 11:23) -# Wine version used : 1.7.10 - 1.7.29 +# Last revision : (2014-11-08 15:43) +# Wine version used : 1.7.10 - 1.7.29 - 1.7.18 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## -# TODO : correct crash in intro # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 @@ -32,7 +31,7 @@ POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version -WORKING_WINE_VERSION="1.7.29" +WORKING_WINE_VERSION="1.7.18" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" @@ -95,6 +94,9 @@ POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" + +# Fix intro bug +POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-08 15:43) # Wine version used : 1.7.10 - 1.7.29 - 1.7.18 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.18" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Fix intro bug POL_Call POL_Function_OverrideDLL builtin,native d3dx9_43 # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 RéponsesEdité par Tutul |
Tutul | Mardi 4 Novembre 2014 à 11:23 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messages- Fix graphic bugs (with wine3D registry key) - Testing in-game but a bit slower ----------------------------------------------- - Intro won't work (sound ok but no video) and still may cause freeze - Game may crash during launch (after first launch). The only solution until now is to delete "$POL/wineprefix/Rift/drive_c/users/$USER/Application Data/RIFT/rift.cfg" (working on it)
Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-11-03 21:05) +# Last revision : (2014-11-04 11:23) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul @@ -9,7 +9,6 @@ ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time -# TODO : test in-game [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" @@ -89,6 +88,13 @@ POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" + +# Fix Graphic bugs +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" +POL_Wine_Direct3D "Multisampling" "disabled" +POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-04 11:23) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Fix Graphic bugs POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "OffscreenRenderingMode" "fbo" POL_Wine_Direct3D "Multisampling" "disabled" POL_Wine_Direct3D "StrictDrawOrdering" "enabled" # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 Réponses |
Tutul | Lundi 3 Novembre 2014 à 21:35 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Messages- New wine version : 1.7.29 (A little more stable) - Fix password field font (Glyph update) - Rewrite of the script (smaller size) - Add warning about Glyph self update (steam version)
Working on graphic test correction ^^
Differences@@ -1,19 +1,19 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-10-28 15:20) -# Wine version used : 1.7.10 +# Last revision : (2014-11-03 21:05) +# Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 - + ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game - + [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" - + TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" @@ -21,87 +21,85 @@ AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" - + # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 - + # Starting debugging API POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Setting Wine Version -WORKING_WINE_VERSION="1.7.10" - +WORKING_WINE_VERSION="1.7.29" + # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" - + # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" - + +# Create TMP directory +POL_System_TmpCreate "$PREFIX" + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Install mandatory dependencies +POL_Call POL_Install_vcrun2005 +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_d3dx9 +POL_Call POL_Install_corefonts # Fix password field font + # Fix Installer crash Set_OS "winxp" - + # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" - + # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client - POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" - POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" - POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed + POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" -fi - -# Asking about memory size of graphic card -POL_SetupWindow_VMS $GAME_VMS - -# Set Graphic Card information keys for wine -POL_Wine_SetVideoDriver - -# Install mandatory dependencies -POL_Call POL_Install_vcrun2005 -POL_Call POL_Install_vcrun2008 -POL_Call POL_Install_d3dx9 - -# Steam and mandatory pre-install fix for steam -if [ "$INSTALL_METHOD" == "STEAM" ]; then +else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi - + # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" - + # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then - POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" + POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else - POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" -fi - -#Deleting temp files -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - POL_System_TmpDelete + POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi - + +# Deleting temp files +POL_System_TmpDelete + #Closing POL POL_SetupWindow_Close exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-11-03 21:05) # Wine version used : 1.7.10 - 1.7.29 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.29" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Create TMP directory POL_System_TmpCreate "$PREFIX" # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Call POL_Install_corefonts # Fix password field font # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" else POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_SetupWindow_message "$(eval_gettext 'The launcher can still self update after installation')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 Réponses |
Tutul | Jeudi 30 Octobre 2014 à 12:27 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd MD5 checksum for POL_Download + Enventualy prevent crash of the installer by setting wine in xp mod (move after installing mandatory dependencies) Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-10-28 15:20) +# Last revision : (2014-10-30 12:20) # Wine version used : 1.7.10 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul @@ -42,9 +42,6 @@ POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" -# Fix Installer crash -Set_OS "winxp" - # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" @@ -54,7 +51,7 @@ POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" - POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed + POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe @@ -74,6 +71,9 @@ POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 +# Fix Installer crash +Set_OS "winxp" + # Steam and mandatory pre-install fix for steam if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Call POL_Install_steam @@ -92,12 +92,12 @@ # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then - POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" + POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else - POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" + POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi -#Deleting temp files +# Deleting temp files if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_System_TmpDelete fi Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-10-30 12:20) # Wine version used : 1.7.10 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.10" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" "b2729fbe258c322126cfbdbaccda6230" SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 # Fix Installer crash Set_OS "winxp" # Steam and mandatory pre-install fix for steam if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" "Game;" fi # Deleting temp files if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_System_TmpDelete fi #Closing POL POL_SetupWindow_Close exit 0 Réponses |
Tutul | Mardi 28 Octobre 2014 à 15:26 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd steam version (not tested so not validate) Differences@@ -1,13 +1,12 @@ #!/bin/bash # Date : (2014-10-28 14:30) -# Last revision : (2014-10-28 14:30) +# Last revision : (2014-10-28 15:20) # Wine version used : 1.7.10 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## -# TODO : steam version # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game @@ -21,6 +20,7 @@ GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" +STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now @@ -45,8 +45,8 @@ # Fix Installer crash Set_OS "winxp" -# Choose between Downloading client or using local one -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Choose between Downloading client or using local one or STEAM version +POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then @@ -56,7 +56,7 @@ cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed SETUP_EXE="GlyphInstall-0-1.exe" -else +elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" @@ -73,17 +73,34 @@ POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 + +# Steam and mandatory pre-install fix for steam +if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_Call POL_Install_steam + POL_Call POL_Install_steam_flags "$STEAM_ID" +fi # Run the install POL_Wine_WaitBefore "$TITLE" -POL_Wine $SETUP_EXE +if [ "$INSTALL_METHOD" == "STEAM" ]; then + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" + POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID +else + POL_Wine $SETUP_EXE +fi POL_Wine_WaitExit "$TITLE" # Making shortcut -POL_Shortcut "GlyphClient.exe" "$TITLE" "" "" +if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" +else + POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" +fi #Deleting temp files -POL_System_TmpDelete +if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + POL_System_TmpDelete +fi #Closing POL POL_SetupWindow_Close Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-10-28 15:20) # Wine version used : 1.7.10 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" STEAM_ID="39120" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.10" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one or STEAM version POL_SetupWindow_InstallMethod "STEAM,DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed SETUP_EXE="GlyphInstall-0-1.exe" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 # Steam and mandatory pre-install fix for steam if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" fi # Run the install POL_Wine_WaitBefore "$TITLE" if [ "$INSTALL_METHOD" == "STEAM" ]; then cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID else POL_Wine $SETUP_EXE fi POL_Wine_WaitExit "$TITLE" # Making shortcut if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" else POL_Shortcut "GlyphClient.exe" "$TITLE" "$TITLE.png" "" fi #Deleting temp files if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then POL_System_TmpDelete fi #Closing POL POL_SetupWindow_Close exit 0 RéponsesMercredi 29 Octobre 2014 à 17:05
|
Tutul | Mardi 28 Octobre 2014 à 14:47 |
Tutul
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFirst upload of the installation script - Intro not working and may cause freeze - You can connect, select a charactere, change setting, etc... - Second conenction may crash. The only solution until now is to delete "$POL/wineprefix/Rift/drive_c/users/$USER/Application Data/RIFT/rift.cfg" (working on it) - Steam version comming soon - Not tested in game (more than 1 minute) Differences@@ -0,0 +1,90 @@ +#!/bin/bash +# Date : (2014-10-28 14:30) +# Last revision : (2014-10-28 14:30) +# Wine version used : 1.7.10 +# Distribution used to test : Fedora 20 - 64 bits +# Author : Tutul +# License : GNU/GPL v3 + +## Beta script ## +# TODO : steam version +# TODO : correct crash in intro +# TODO : correct crash when loading acount for the second time +# TODO : test in-game + +[ "$PLAYONLINUX" = "" ] && exit 1 +source "$PLAYONLINUX/lib/sources" + +TITLE="Rift" +PREFIX="Rift" +EDITOR="Trion Worlds" +GAME_URL="http://www.riftgame.com" +AUTHOR="Tutul" +GAME_VMS="256" + +# Starting the script +#POL_GetSetupImages "" "" "$TITLE" No image uploaded for now +POL_SetupWindow_Init +POL_SetupWindow_SetID 2323 + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Setting Wine Version +WORKING_WINE_VERSION="1.7.10" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Downloading wine if necessary and creating prefix +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +# Fix Installer crash +Set_OS "winxp" + +# Choose between Downloading client or using local one +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +# Downloading client or choosing existing one +if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + # Donwloading client + POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed + SETUP_EXE="GlyphInstall-0-1.exe" +else + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" +fi + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Install mandatory dependencies +POL_Call POL_Install_vcrun2005 +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_d3dx9 + +# Run the install +POL_Wine_WaitBefore "$TITLE" +POL_Wine $SETUP_EXE +POL_Wine_WaitExit "$TITLE" + +# Making shortcut +POL_Shortcut "GlyphClient.exe" "$TITLE" "" "" + +#Deleting temp files +POL_System_TmpDelete + +#Closing POL +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-28 14:30) # Last revision : (2014-10-28 14:30) # Wine version used : 1.7.10 # Distribution used to test : Fedora 20 - 64 bits # Author : Tutul # License : GNU/GPL v3 ## Beta script ## # TODO : steam version # TODO : correct crash in intro # TODO : correct crash when loading acount for the second time # TODO : test in-game [ "$PLAYONLINUX" = "" ] && exit 1 source "$PLAYONLINUX/lib/sources" TITLE="Rift" PREFIX="Rift" EDITOR="Trion Worlds" GAME_URL="http://www.riftgame.com" AUTHOR="Tutul" GAME_VMS="256" # Starting the script #POL_GetSetupImages "" "" "$TITLE" No image uploaded for now POL_SetupWindow_Init POL_SetupWindow_SetID 2323 # Starting debugging API POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting Wine Version WORKING_WINE_VERSION="1.7.10" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Downloading wine if necessary and creating prefix POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Fix Installer crash Set_OS "winxp" # Choose between Downloading client or using local one POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Downloading client or choosing existing one if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Donwloading client POL_SetupWindow_message "$(eval_gettext 'We will download the installer')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://download.dyn.triongames.com/GlyphInstall-0-1.exe" # MD5 needed SETUP_EXE="GlyphInstall-0-1.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Install mandatory dependencies POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 # Run the install POL_Wine_WaitBefore "$TITLE" POL_Wine $SETUP_EXE POL_Wine_WaitExit "$TITLE" # Making shortcut POL_Shortcut "GlyphClient.exe" "$TITLE" "" "" #Deleting temp files POL_System_TmpDelete #Closing POL POL_SetupWindow_Close exit 0 RéponsesLundi 3 Novembre 2014 à 22:02
|
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