Secret of Monkey Island Special Edition
Informations
Creator | Wiadmości |
---|---|
GNU_Raziel
![]()
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionFrançais :
Screenshots
Source code#!/bin/bash # Date : (2010-08-15 21:00) # Last revision : (2012-05-04 21:00) # Wine version used : 1.2, 1.2.3, 1.3.37, 1.4 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Secret of Monkey Island Special Edition" PREFIX="MI_SE" EDITOR="Lucasarts" GAME_URL="http://www.lucasarts.com/games/monkeyisland/" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="3.20" 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 if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Call POL_Install_steam STEAM_ID="32360" fi 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 if [ "$INSTALL_METHOD" == "STEAM" ]; then # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "$STEAM_ID" # Shortcut done before install for steam version POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" POL_Shortcut "steam.exe" "Steam ($TITLE)" "" "" # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" else # Asking then installing DDV of the game 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" fi # Making shortcut if [ "$INSTALL_METHOD" != "STEAM" ]; then POL_Shortcut "MISE.exe" "$TITLE" "$TITLE.png" "" fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Wiadmości |
Quentin PÂRIS | Monday 10 December 2018 at 22:59 |
Quentin PÂRIS
![]() Admin
|
InformationThis update has been approved by the team. Differences@@ -15,7 +15,7 @@ EDITOR="Lucasarts" GAME_URL="http://www.lucasarts.com/games/monkeyisland/" AUTHOR="GNU_Raziel" -WORKING_WINE_VERSION="1.4" +WORKING_WINE_VERSION="3.20" GAME_VMS="256" # Starting the script New source code#!/bin/bash # Date : (2010-08-15 21:00) # Last revision : (2012-05-04 21:00) # Wine version used : 1.2, 1.2.3, 1.3.37, 1.4 # Distribution used to test : Debian Testing x64 # Author : GNU_Raziel # Licence : Retail # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Secret of Monkey Island Special Edition" PREFIX="MI_SE" EDITOR="Lucasarts" GAME_URL="http://www.lucasarts.com/games/monkeyisland/" AUTHOR="GNU_Raziel" WORKING_WINE_VERSION="3.20" 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 if [ "$INSTALL_METHOD" == "STEAM" ]; then POL_Call POL_Install_steam STEAM_ID="32360" fi 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 if [ "$INSTALL_METHOD" == "STEAM" ]; then # Mandatory pre-install fix for steam POL_Call POL_Install_steam_flags "$STEAM_ID" # Shortcut done before install for steam version POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" POL_Shortcut "steam.exe" "Steam ($TITLE)" "" "" # Steam install POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" else # Asking then installing DDV of the game 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" fi # Making shortcut if [ "$INSTALL_METHOD" != "STEAM" ]; then POL_Shortcut "MISE.exe" "$TITLE" "$TITLE.png" "" fi POL_SetupWindow_Close exit 0 Odpowiedzi |
MadMike | Sunday 25 November 2018 at 10:16 |
MadMike
![]()
|
WiadmościI was able to get to work. Using the standard installer and then switiching to a newer wine-version. I'm currently using wine-3.20 from winehq-staging of the respecting ppa for Ubuntu 18.04. Odpowiedzi |
MadMike | Saturday 24 November 2018 at 7:40 |
MadMike
![]()
|
WiadmościThe installer doesn't seem to with work the gog-version. It's only after buying on gog.com and wanting to install it I found out about it :-( Odpowiedzi |