GOG.com - Tales of Monkey Island
Informations
Créateur | Messages |
---|---|
petch
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 0 DescriptionEnglish: An adventure of the unlucky (clumsy?) Mighty Pirate Guybrush Threepwood, in 5 chapters.
Captures d'écranCode source#!/bin/bash # Date : (2013-01-30 19-01) # Last revision : see changelog # Wine version used : 1.4.1, 1.6.2, 1.7.5 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2013-01-30 19-01) # Initial script. # [Pierre Etchemaite] (2014-06-04 00-00) # Script updated for GOG's installer v2. # Upgrade Wine to 1.7.5, improves performance and fixes squarish "left hand smoke" # [Dadu042] (2020-04-19 17:30). # Wine 1.7.5 (outdated) -> 3.0.3 (not tested) # POL_Install_d3dx9_36 -> POL_Install_d3dx9_43 [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="tales_of_monkey_island" PREFIX="TalesOfMonkeyIsland_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - Tales of Monkey Island" SHORTCUT_NAME1="ToMI S1E1: Launch of the Screaming Narwhal" SHORTCUT_NAME2="ToMI S1E2: The Siege of Spinner Cay" SHORTCUT_NAME3="ToMI S1E3: Lair of the Leviathan" SHORTCUT_NAME4="ToMI S1E4: The Trial and Execution of Guybrush Threepwood" SHORTCUT_NAME5="ToMI S1E5: Rise of the Pirate God" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1555 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Telltale Games" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "063aae082dbdb87399f33e891ab2b688" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_Call POL_Install_d3dx9_43 POL_SetupWindow_VMS "64" # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "MonkeyIsland101.exe" "$SHORTCUT_NAME1" "$SHORTCUT_NAME1.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut "MonkeyIsland102.exe" "$SHORTCUT_NAME2" "$SHORTCUT_NAME2.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut "MonkeyIsland103.exe" "$SHORTCUT_NAME3" "$SHORTCUT_NAME3.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME3" POL_Shortcut "MonkeyIsland104.exe" "$SHORTCUT_NAME4" "$SHORTCUT_NAME4.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME4" POL_Shortcut "MonkeyIsland105.exe" "$SHORTCUT_NAME5" "$SHORTCUT_NAME5.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME5" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Dimanche 19 Avril 2020 à 18:16 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,21 +1,30 @@ #!/bin/bash # Date : (2013-01-30 19-01) -# Last revision : (2014-06-04 00-00) +# Last revision : see changelog # Wine version used : 1.4.1, 1.6.2, 1.7.5 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : +# +# CHANGELOG +# [Pierre Etchemaite] (2013-01-30 19-01) +# Initial script. +# [Pierre Etchemaite] (2014-06-04 00-00) +# Script updated for GOG's installer v2. +# Upgrade Wine to 1.7.5, improves performance and fixes squarish "left hand smoke" +# [Dadu042] (2020-04-19 17:30). +# Wine 1.7.5 (outdated) -> 3.0.3 (not tested) +# POL_Install_d3dx9_36 -> POL_Install_d3dx9_43 -# 1.7.5: fixes square "left hand smoke" [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="tales_of_monkey_island" PREFIX="TalesOfMonkeyIsland_gog" -WORKING_WINE_VERSION="1.7.5" +WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - Tales of Monkey Island" SHORTCUT_NAME1="ToMI S1E1: Launch of the Screaming Narwhal" @@ -43,7 +52,7 @@ # GoG work! Set_OS winxp -POL_Call POL_Install_d3dx9_36 +POL_Call POL_Install_d3dx9_43 POL_SetupWindow_VMS "64" @@ -67,4 +76,4 @@ POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2013-01-30 19-01) # Last revision : see changelog # Wine version used : 1.4.1, 1.6.2, 1.7.5 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2013-01-30 19-01) # Initial script. # [Pierre Etchemaite] (2014-06-04 00-00) # Script updated for GOG's installer v2. # Upgrade Wine to 1.7.5, improves performance and fixes squarish "left hand smoke" # [Dadu042] (2020-04-19 17:30). # Wine 1.7.5 (outdated) -> 3.0.3 (not tested) # POL_Install_d3dx9_36 -> POL_Install_d3dx9_43 [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="tales_of_monkey_island" PREFIX="TalesOfMonkeyIsland_gog" WORKING_WINE_VERSION="3.0.3" TITLE="GOG.com - Tales of Monkey Island" SHORTCUT_NAME1="ToMI S1E1: Launch of the Screaming Narwhal" SHORTCUT_NAME2="ToMI S1E2: The Siege of Spinner Cay" SHORTCUT_NAME3="ToMI S1E3: Lair of the Leviathan" SHORTCUT_NAME4="ToMI S1E4: The Trial and Execution of Guybrush Threepwood" SHORTCUT_NAME5="ToMI S1E5: Rise of the Pirate God" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1555 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Telltale Games" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "063aae082dbdb87399f33e891ab2b688" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_Call POL_Install_d3dx9_43 POL_SetupWindow_VMS "64" # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "MonkeyIsland101.exe" "$SHORTCUT_NAME1" "$SHORTCUT_NAME1.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut "MonkeyIsland102.exe" "$SHORTCUT_NAME2" "$SHORTCUT_NAME2.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut "MonkeyIsland103.exe" "$SHORTCUT_NAME3" "$SHORTCUT_NAME3.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME3" POL_Shortcut "MonkeyIsland104.exe" "$SHORTCUT_NAME4" "$SHORTCUT_NAME4.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME4" POL_Shortcut "MonkeyIsland105.exe" "$SHORTCUT_NAME5" "$SHORTCUT_NAME5.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME5" POL_SetupWindow_Close exit 0 Réponses |
petch | Lundi 9 Juin 2014 à 18:23 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesDownload hashes update Upgrade Wine to 1.7.5, improves performance and fixes squarish "left hand smoke"
Differences@@ -1,19 +1,21 @@ #!/bin/bash # Date : (2013-01-30 19-01) -# Last revision : (2013-11-06 22-08) -# Wine version used : 1.4.1 +# Last revision : (2014-06-04 00-00) +# Wine version used : 1.4.1, 1.6.2, 1.7.5 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : +# 1.7.5: fixes square "left hand smoke" + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="tales_of_monkey_island" PREFIX="TalesOfMonkeyIsland_gog" -WORKING_WINE_VERSION="1.4.1" +WORKING_WINE_VERSION="1.7.5" TITLE="GOG.com - Tales of Monkey Island" SHORTCUT_NAME1="ToMI S1E1: Launch of the Screaming Narwhal" @@ -30,7 +32,7 @@ POL_SetupWindow_presentation "$TITLE" "Telltale Games" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" -POL_Call POL_GoG_setup "$GOGID" "751028af43a23fa8707a20c243acfabb" +POL_Call POL_GoG_setup "$GOGID" "063aae082dbdb87399f33e891ab2b688" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" Nouveau code source#!/bin/bash # Date : (2013-01-30 19-01) # Last revision : (2014-06-04 00-00) # Wine version used : 1.4.1, 1.6.2, 1.7.5 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # 1.7.5: fixes square "left hand smoke" [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="tales_of_monkey_island" PREFIX="TalesOfMonkeyIsland_gog" WORKING_WINE_VERSION="1.7.5" TITLE="GOG.com - Tales of Monkey Island" SHORTCUT_NAME1="ToMI S1E1: Launch of the Screaming Narwhal" SHORTCUT_NAME2="ToMI S1E2: The Siege of Spinner Cay" SHORTCUT_NAME3="ToMI S1E3: Lair of the Leviathan" SHORTCUT_NAME4="ToMI S1E4: The Trial and Execution of Guybrush Threepwood" SHORTCUT_NAME5="ToMI S1E5: Rise of the Pirate God" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 1555 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Telltale Games" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "063aae082dbdb87399f33e891ab2b688" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_Call POL_Install_d3dx9_36 POL_SetupWindow_VMS "64" # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "MonkeyIsland101.exe" "$SHORTCUT_NAME1" "$SHORTCUT_NAME1.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME1" POL_Shortcut "MonkeyIsland102.exe" "$SHORTCUT_NAME2" "$SHORTCUT_NAME2.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME2" POL_Shortcut "MonkeyIsland103.exe" "$SHORTCUT_NAME3" "$SHORTCUT_NAME3.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME3" POL_Shortcut "MonkeyIsland104.exe" "$SHORTCUT_NAME4" "$SHORTCUT_NAME4.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME4" POL_Shortcut "MonkeyIsland105.exe" "$SHORTCUT_NAME5" "$SHORTCUT_NAME5.png" "" "Game;AdventureGame;" POL_Shortcut_QuietDebug "$SHORTCUT_NAME5" 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