Monkey Island Special Edition Collection
Informations
| Creator | Message |
|---|---|
clow56
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 1 DescriptionScript for the game Monkey Island Special Edition Collection RETAIL DVD version. Source code#!/bin/bash
# Date : (2016-03-04 15:00)
# Last revision : (2016-03-04 15:00)
# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4
# Distribution used to test : Mint 17.3 x64
# Author : clow56
# Licence : Retail
# Only For : http://www.playonlinux.com
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Monkey Island Special Edition Collection"
PREFIX="MISE_Collection"
EDITOR="Lucasarts"
GAME_URL="http://www.lucasarts.com/games/monkeyisland/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.4"
GAME_VMS="256"
# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# 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 installer launcher
POL_SetupWindow_InstallMethod "LOCAL"
# Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_dxfullsetup
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/"*
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/"*
fi
# Begin game installation
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"
# Making shortcut
POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" ""
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Message |
| Augier | Tuesday 23 June 2020 at 15:38 |
Augier
|
MessageCan this script be deleted from the DB as it does not work and is a duplicate of https://www.playonlinux.com/fr/app-665-Secret_of_Monkey_Island_Special_Edition.html Replies |
| clow56 | Friday 4 March 2016 at 17:37 |
clow56
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,73 @@ +#!/bin/bash +# Date : (2016-03-04 15:00) +# Last revision : (2016-03-04 15:00) +# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4 +# Distribution used to test : Mint 17.3 x64 +# Author : clow56 +# Licence : Retail +# Only For : http://www.playonlinux.com + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Monkey Island Special Edition Collection" +PREFIX="MISE_Collection" +EDITOR="Lucasarts" +GAME_URL="http://www.lucasarts.com/games/monkeyisland/" +AUTHOR="GNU_Raziel" +WORKING_WINE_VERSION="1.4" +GAME_VMS="256" + +# Starting the script +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# 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 installer launcher +POL_SetupWindow_InstallMethod "LOCAL" + +# Installing mandatory dependencies +POL_Call POL_Install_vcrun2005 + +POL_Call POL_Install_dxfullsetup + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +## Fix for this game +# Sound problem fix - pulseaudio related +[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa" +[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y" +## End Fix + +# Cleaning temp +if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then + rm -rf "$WINEPREFIX/drive_c/windows/temp/"* + chmod -R 777 "$POL_USER_ROOT/tmp/" + rm -rf "$POL_USER_ROOT/tmp/"* +fi + +# Begin game installation +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" + +# Making shortcut + +POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" "" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2016-03-04 15:00)
# Last revision : (2016-03-04 15:00)
# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4
# Distribution used to test : Mint 17.3 x64
# Author : clow56
# Licence : Retail
# Only For : http://www.playonlinux.com
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Monkey Island Special Edition Collection"
PREFIX="MISE_Collection"
EDITOR="Lucasarts"
GAME_URL="http://www.lucasarts.com/games/monkeyisland/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.4"
GAME_VMS="256"
# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# 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 installer launcher
POL_SetupWindow_InstallMethod "LOCAL"
# Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_dxfullsetup
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/"*
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/"*
fi
# Begin game installation
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"
# Making shortcut
POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" ""
POL_SetupWindow_Close
exit 0 RepliesFriday 2 August 2019 at 22:03
|
| clow56 | Friday 4 March 2016 at 17:34 |
clow56
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,73 @@ +#!/bin/bash +# Date : (2016-03-04 15:00) +# Last revision : (2016-03-04 15:00) +# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4 +# Distribution used to test : Mint 17.3 x64 +# Author : clow56 +# Licence : Retail +# Only For : http://www.playonlinux.com + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Monkey Island Special Edition Collection" +PREFIX="MISE_Collection" +EDITOR="Lucasarts" +GAME_URL="http://www.lucasarts.com/games/monkeyisland/" +AUTHOR="GNU_Raziel" +WORKING_WINE_VERSION="1.4" +GAME_VMS="256" + +# Starting the script +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# 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 installer launcher +POL_SetupWindow_InstallMethod "LOCAL" + +# Installing mandatory dependencies +POL_Call POL_Install_vcrun2005 + +POL_Call POL_Install_dxfullsetup + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +## Fix for this game +# Sound problem fix - pulseaudio related +[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa" +[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y" +## End Fix + +# Cleaning temp +if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then + rm -rf "$WINEPREFIX/drive_c/windows/temp/"* + chmod -R 777 "$POL_USER_ROOT/tmp/" + rm -rf "$POL_USER_ROOT/tmp/"* +fi + +# Begin game installation +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" + +# Making shortcut + +POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" "" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2016-03-04 15:00)
# Last revision : (2016-03-04 15:00)
# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4
# Distribution used to test : Mint 17.3 x64
# Author : clow56
# Licence : Retail
# Only For : http://www.playonlinux.com
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Monkey Island Special Edition Collection"
PREFIX="MISE_Collection"
EDITOR="Lucasarts"
GAME_URL="http://www.lucasarts.com/games/monkeyisland/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.4"
GAME_VMS="256"
# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# 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 installer launcher
POL_SetupWindow_InstallMethod "LOCAL"
# Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_dxfullsetup
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/"*
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/"*
fi
# Begin game installation
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"
# Making shortcut
POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" ""
POL_SetupWindow_Close
exit 0 Replies |
| clow56 | Friday 4 March 2016 at 17:31 |
clow56
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,73 @@ +#!/bin/bash +# Date : (2016-03-04 15:00) +# Last revision : (2016-03-04 15:00) +# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4 +# Distribution used to test : Mint 17.3 x64 +# Author : clow56 +# Licence : Retail +# Only For : http://www.playonlinux.com + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Secret of Monkey Island Special Edition" +PREFIX="MISE_Collection" +EDITOR="Lucasarts" +GAME_URL="http://www.lucasarts.com/games/monkeyisland/" +AUTHOR="GNU_Raziel" +WORKING_WINE_VERSION="1.4" +GAME_VMS="256" + +# Starting the script +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# 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 Steam and other Digital Download version +POL_SetupWindow_InstallMethod "STEAM,LOCAL" + +# Installing mandatory dependencies +POL_Call POL_Install_vcrun2005 + +POL_Call POL_Install_dxfullsetup + +# Asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS + +## Fix for this game +# Sound problem fix - pulseaudio related +[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa" +[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y" +## End Fix + +# Cleaning temp +if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then + rm -rf "$WINEPREFIX/drive_c/windows/temp/"* + chmod -R 777 "$POL_USER_ROOT/tmp/" + rm -rf "$POL_USER_ROOT/tmp/"* +fi + +# Begin game installation +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" + +# Making shortcut + +POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" "" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2016-03-04 15:00)
# Last revision : (2016-03-04 15:00)
# Wine version used : 1.2, 1.2.3, 1.3.37, 1.4
# Distribution used to test : Mint 17.3 x64
# Author : clow56
# Licence : Retail
# Only For : http://www.playonlinux.com
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Secret of Monkey Island Special Edition"
PREFIX="MISE_Collection"
EDITOR="Lucasarts"
GAME_URL="http://www.lucasarts.com/games/monkeyisland/"
AUTHOR="GNU_Raziel"
WORKING_WINE_VERSION="1.4"
GAME_VMS="256"
# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/mi_se/top.jpg" "http://files.playonlinux.com/resources/setups/mi_se/left.jpg" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# 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 Steam and other Digital Download version
POL_SetupWindow_InstallMethod "STEAM,LOCAL"
# Installing mandatory dependencies
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_dxfullsetup
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/"*
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/"*
fi
# Begin game installation
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"
# Making shortcut
POL_Shortcut "Launcher.exe" "$TITLE" "$TITLE.png" ""
POL_SetupWindow_Close
exit 0 Replies |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Install this program