Escape the museum

Informations

Creator Meddelanden
Dadu042

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 3470
Wine: 4.0.3

Feedbacks

Description

A point and click puzzle game.

Source code

#!/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:

Contribute
Member Meddelanden
Dadu042 Monday 3 February 2020 at 22:00
Dadu042

Information

This update has been approved by the team.

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"

New source code

#!/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

Svar

Dadu042 Wednesday 29 January 2020 at 23:13
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

New source code

#!/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

Svar

Dadu042 Saturday 11 May 2019 at 22:31
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Meddelanden

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"

New source code

#!/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

Svar

Ändrat av 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