Monkey Island Special Edition Collection
Informations
Créateur | Messages |
---|---|
clow56
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 1 DescriptionScript for the game Monkey Island Special Edition Collection RETAIL DVD version. Code source#!/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:
ContribuerMembre | Messages |
Augier | Mardi 23 Juin 2020 à 15:38 |
Augier
|
MessagesCan 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 Réponses |
clow56 | Vendredi 4 Mars 2016 à 17:37 |
clow56
|
InformationCette mise à jour a été acceptée par l'équipe 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 Nouveau code source#!/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 RéponsesVendredi 2 Aoüt 2019 à 22:03
|
clow56 | Vendredi 4 Mars 2016 à 17:34 |
clow56
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
clow56 | Vendredi 4 Mars 2016 à 17:31 |
clow56
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 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