Escape the museum

Informations

Créateur Messages
Dadu042

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 3470
Wine: 4.0.3

Retours d'expérience

Description

A point and click puzzle game.

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-11 21-15)
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Media used: CD-ROM, july 2009 (folders date).
#
# CHANGELOG
# [Dadu042] (2019-05-11 21-15)
#   Initial script.
# [Dadu042] (2020-01-27 21:00)
#   Wine 4.1 -> 4.0.3

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Escape the museum"
PREFIX="escapemuseum"
WORKING_WINE_VERSION="4.0.3"
AUTHOR="Dadu042"
EDITOR="Big fish games"
GAME_URL="https://pcgamingwiki.com/wiki/Escape_The_Museum"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
   
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

################
# GPU settings #
################

# Requires GPU with 128 MB of RAM.
POL_SetupWindow_VMS "128"
 
###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"
   
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.exe"
        POL_Wine start /unix "$CDROM/autorun.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "Museum.exe" "$TITLE" "" "" "Game;"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 22:00
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -30,6 +30,8 @@
 POL_Debug_Init
 
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
    
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-11 21-15)
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Media used: CD-ROM, july 2009 (folders date).
#
# CHANGELOG
# [Dadu042] (2019-05-11 21-15)
#   Initial script.
# [Dadu042] (2020-01-27 21:00)
#   Wine 4.1 -> 4.0.3

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Escape the museum"
PREFIX="escapemuseum"
WORKING_WINE_VERSION="4.0.3"
AUTHOR="Dadu042"
EDITOR="Big fish games"
GAME_URL="https://pcgamingwiki.com/wiki/Escape_The_Museum"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
   
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

################
# GPU settings #
################

# Requires GPU with 128 MB of RAM.
POL_SetupWindow_VMS "128"
 
###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"
   
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.exe"
        POL_Wine start /unix "$CDROM/autorun.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "Museum.exe" "$TITLE" "" "" "Game;"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Mercredi 29 Janvier 2020 à 23:13
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -1,6 +1,6 @@
 #!/usr/bin/env playonlinux-bash
 # Date : (2019-05-11 21-15)
-# Last revision : (2019-05-11 21-15)
+# Last revision : see changelog
 # Wine version used : see below
 # Distribution used to test : Ubuntu 19.04 x64
 # Script licence : GPL3
@@ -9,13 +9,19 @@
 # Playonlinux version used : 4.3.4
 #
 # Media used: CD-ROM, july 2009 (folders date).
+#
+# CHANGELOG
+# [Dadu042] (2019-05-11 21-15)
+#   Initial script.
+# [Dadu042] (2020-01-27 21:00)
+#   Wine 4.1 -> 4.0.3
 
 [ "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
    
 TITLE="Escape the museum"
 PREFIX="escapemuseum"
-WORKING_WINE_VERSION="4.1"
+WORKING_WINE_VERSION="4.0.3"
 AUTHOR="Dadu042"
 EDITOR="Big fish games"
 GAME_URL="https://pcgamingwiki.com/wiki/Escape_The_Museum"
@@ -36,7 +42,7 @@
 # GPU settings #
 ################
 
-# Really indispensable ? (Dadu042)
+# Requires GPU with 128 MB of RAM.
 POL_SetupWindow_VMS "128"
  
 ###############
@@ -60,7 +66,7 @@
         cd "$POL_System_TmpDir"
 fi
 
-POL_Shortcut "Museum.exe" "$TITLE" ""
+POL_Shortcut "Museum.exe" "$TITLE" "" "" "Game;"
 
 POL_System_TmpDelete
 POL_SetupWindow_Close

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-11 21-15)
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Media used: CD-ROM, july 2009 (folders date).
#
# CHANGELOG
# [Dadu042] (2019-05-11 21-15)
#   Initial script.
# [Dadu042] (2020-01-27 21:00)
#   Wine 4.1 -> 4.0.3

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Escape the museum"
PREFIX="escapemuseum"
WORKING_WINE_VERSION="4.0.3"
AUTHOR="Dadu042"
EDITOR="Big fish games"
GAME_URL="https://pcgamingwiki.com/wiki/Escape_The_Museum"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
   
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

################
# GPU settings #
################

# Requires GPU with 128 MB of RAM.
POL_SetupWindow_VMS "128"
 
###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"
   
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.exe"
        POL_Wine start /unix "$CDROM/autorun.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "Museum.exe" "$TITLE" "" "" "Game;"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Samedi 11 Mai 2019 à 22:31
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Tested 5 minutes.  This game seems to have no exit function (I did ALT+F4).

Differences

@@ -10,7 +10,7 @@
 #
 # Media used: CD-ROM, july 2009 (folders date).
 
-[ -z "$PLAYONLINUX" ] && exit 0
+[ "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
    
 TITLE="Escape the museum"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-11 21-15)
# Last revision : (2019-05-11 21-15)
# Wine version used : see below
# Distribution used to test : Ubuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
#
# Media used: CD-ROM, july 2009 (folders date).

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Escape the museum"
PREFIX="escapemuseum"
WORKING_WINE_VERSION="4.1"
AUTHOR="Dadu042"
EDITOR="Big fish games"
GAME_URL="https://pcgamingwiki.com/wiki/Escape_The_Museum"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
   
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

Set_OS "win7"

################
# GPU settings #
################

# Really indispensable ? (Dadu042)
POL_SetupWindow_VMS "128"
 
###############
# Go          #
###############

POL_SetupWindow_InstallMethod "LOCAL,CD"
   
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.exe"
        POL_Wine start /unix "$CDROM/autorun.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi

POL_Shortcut "Museum.exe" "$TITLE" ""

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Réponses

Edité par Dadu042

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