Myst IV: Revelation
Informations
Créateur | Messages |
---|---|
tharvik
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionMyst IV: Revelation is the fourth title in the Myst series. As in previous games, the player assumes the role of the Stranger, a friend of Atrus. The plot of Revelation ties up loose ends from the original Myst. The player is summoned by Atrus, a man who creates links to other worlds known as Ages by writing special linking books. Almost twenty years earlier, Atrus' two sons nearly destroyed all of his linking books and were imprisoned; Atrus now wishes to see if his sons' imprisonment has reformed them. The player ends up traveling to each brother's prison, in an effort to recover Atrus' daughter Yeesha from the brothers' plot. Code source#!/bin/bash ##Informations # Date : (2012-08-25 12-14) # Last revision : see changelog. # Wine version used : 1.5.11 # Distribution used to test : Ubuntu 12.04 LTS # Author : tharvik # # CHANGELOG # [tharvik] (2012-08-25 12-14) # Initial script. # [Dadu042] (2020-01-22 21:30) # Wine 1.5.11 -> 3.0.3 # Fix POL_Install_d3dx11 -> POL_Install_d3dx9 ## Configuration [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Myst 4: Revelation" PREFIX="Myst_Revelation" ## Script # Init POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Ubisoft Montreal" "http://montreal.ubisoft.com/en" "tharvik" "$PREFIX" # Creating Prefix POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" Set_OS "winxp" # Asking the mountpoint and checking the CD POL_SetupWindow_message "$(eval_gettext "Please insert the game media into your disk drive.")" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "win32/autorun/MystIV.exe" POL_SetupWindow_check_cdrom "win32/bin/m4_base_rd.dll" POL_SetupWindow_check_cdrom "win32/bin/Myst4_Game_2.ico" POL_SetupWindow_check_cdrom "win32/bin/configurator/myst_detection.exe" POL_SetupWindow_check_cdrom "win32/bin/updatelauncher/mystupdate.exe" # Installing POL_SetupWindow_wait "$(eval_gettext "Please wait while $TITLE is installed.")" "$TITLE" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit # Add DirectX 9 POL_Call POL_Install_d3dx9 # Add Shortcut POL_Shortcut "Myst4.exe" "$TITLE" "" "" "Game;" # Cleaning. POL_SetupWindow_message "$(eval_gettext "$TITLE has been successfully installed.\n\nYou might have to start the game three times in order to work (only the first launch).")" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Lundi 27 Janvier 2020 à 21:16 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -3,11 +3,17 @@ ##Informations # Date : (2012-08-25 12-14) -# Last revision : (2012-08-25 12-14) +# Last revision : see changelog. # Wine version used : 1.5.11 # Distribution used to test : Ubuntu 12.04 LTS # Author : tharvik - +# +# CHANGELOG +# [tharvik] (2012-08-25 12-14) +# Initial script. +# [Dadu042] (2020-01-22 21:30) +# Wine 1.5.11 -> 3.0.3 +# Fix POL_Install_d3dx11 -> POL_Install_d3dx9 ## Configuration [ "$PLAYONLINUX" = "" ] && exit 0 @@ -26,7 +32,7 @@ # Creating Prefix POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.5.11" +POL_Wine_PrefixCreate "3.0.3" Set_OS "winxp" # Asking the mountpoint and checking the CD @@ -44,12 +50,12 @@ POL_Wine_WaitExit # Add DirectX 9 -POL_Call POL_Install_d3dx11 +POL_Call POL_Install_d3dx9 # Add Shortcut -POL_Shortcut "Myst4.exe" "$TITLE" +POL_Shortcut "Myst4.exe" "$TITLE" "" "" "Game;" -# Cleaning -POL_SetupWindow_message "$(eval_gettext "$TITLE has been successfully installed.\n\nYou may have to start the game three times in order to work (only the first launch).")" "$TITLE" +# Cleaning. +POL_SetupWindow_message "$(eval_gettext "$TITLE has been successfully installed.\n\nYou might have to start the game three times in order to work (only the first launch).")" "$TITLE" POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash ##Informations # Date : (2012-08-25 12-14) # Last revision : see changelog. # Wine version used : 1.5.11 # Distribution used to test : Ubuntu 12.04 LTS # Author : tharvik # # CHANGELOG # [tharvik] (2012-08-25 12-14) # Initial script. # [Dadu042] (2020-01-22 21:30) # Wine 1.5.11 -> 3.0.3 # Fix POL_Install_d3dx11 -> POL_Install_d3dx9 ## Configuration [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Myst 4: Revelation" PREFIX="Myst_Revelation" ## Script # Init POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Ubisoft Montreal" "http://montreal.ubisoft.com/en" "tharvik" "$PREFIX" # Creating Prefix POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" Set_OS "winxp" # Asking the mountpoint and checking the CD POL_SetupWindow_message "$(eval_gettext "Please insert the game media into your disk drive.")" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "win32/autorun/MystIV.exe" POL_SetupWindow_check_cdrom "win32/bin/m4_base_rd.dll" POL_SetupWindow_check_cdrom "win32/bin/Myst4_Game_2.ico" POL_SetupWindow_check_cdrom "win32/bin/configurator/myst_detection.exe" POL_SetupWindow_check_cdrom "win32/bin/updatelauncher/mystupdate.exe" # Installing POL_SetupWindow_wait "$(eval_gettext "Please wait while $TITLE is installed.")" "$TITLE" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit # Add DirectX 9 POL_Call POL_Install_d3dx9 # Add Shortcut POL_Shortcut "Myst4.exe" "$TITLE" "" "" "Game;" # Cleaning. POL_SetupWindow_message "$(eval_gettext "$TITLE has been successfully installed.\n\nYou might have to start the game three times in order to work (only the first launch).")" "$TITLE" POL_SetupWindow_Close exit Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com