You are here
GOG.com - Technobabylon
Informations
Creator | Message |
---|---|
Okto
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionA Wadjet Eye adventure game, released in 2015. Source code#!/bin/bash # Date : (2015-09-16 15-04) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-09-16 15-04) # Initial script. # [Dadu042] (2020-04-19 17:30). # Wine 1.6.2 (outdated) -> system [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Technobabylon" GOGID="technobabylon_deluxe_edition" PREFIX="technobabylon" SHORTCUT_NAME="Technobabylon" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Technocrat Games and Wadjet Eye Games" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "c14eba1d243fc42a3554a7e3917f1a63" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Call POL_GoG_install POL_Wine_reboot POL_Shortcut "Technobabylon.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut "winsetup.exe" "$SHORTCUT_NAME Configuration Tool" "" "" "Game;AdventureGame;" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Sunday 19 April 2020 at 18:13 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -3,14 +3,19 @@ # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy - +# +# CHANGELOG +# [Benjamin Hardy] (2015-09-16 15-04) +# Initial script. +# [Dadu042] (2020-04-19 17:30). +# Wine 1.6.2 (outdated) -> system + [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Technobabylon" GOGID="technobabylon_deluxe_edition" PREFIX="technobabylon" -WINEVERSION="1.6.2" SHORTCUT_NAME="Technobabylon" @@ -22,7 +27,7 @@ POL_Call POL_GoG_setup "$GOGID" "c14eba1d243fc42a3554a7e3917f1a63" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" +POL_Wine_PrefixCreate POL_Call POL_GoG_install New source code#!/bin/bash # Date : (2015-09-16 15-04) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-09-16 15-04) # Initial script. # [Dadu042] (2020-04-19 17:30). # Wine 1.6.2 (outdated) -> system [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Technobabylon" GOGID="technobabylon_deluxe_edition" PREFIX="technobabylon" SHORTCUT_NAME="Technobabylon" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Technocrat Games and Wadjet Eye Games" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "c14eba1d243fc42a3554a7e3917f1a63" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Call POL_GoG_install POL_Wine_reboot POL_Shortcut "Technobabylon.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut "winsetup.exe" "$SHORTCUT_NAME Configuration Tool" "" "" "Game;AdventureGame;" POL_SetupWindow_Close exit 0 Replies |
Okto | Wednesday 16 September 2015 at 15:42 |
Okto
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,36 @@ +#!/bin/bash +# Date : (2015-09-16 15-04) +# Wine version used : 1.6.2 +# Distribution used to test : OpenSUSE 13.2 +# Author : Benjamin Hardy + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="GOG.com - Technobabylon" +GOGID="technobabylon_deluxe_edition" +PREFIX="technobabylon" +WINEVERSION="1.6.2" +SHORTCUT_NAME="Technobabylon" + + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Technocrat Games and Wadjet Eye Games" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" + +POL_Call POL_GoG_setup "$GOGID" "c14eba1d243fc42a3554a7e3917f1a63" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +POL_Call POL_GoG_install + +POL_Wine_reboot + +POL_Shortcut "Technobabylon.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" +POL_Shortcut "winsetup.exe" "$SHORTCUT_NAME Configuration Tool" "" "" "Game;AdventureGame;" + +POL_SetupWindow_Close + +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-09-16 15-04) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Technobabylon" GOGID="technobabylon_deluxe_edition" PREFIX="technobabylon" WINEVERSION="1.6.2" SHORTCUT_NAME="Technobabylon" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Technocrat Games and Wadjet Eye Games" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "c14eba1d243fc42a3554a7e3917f1a63" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_Call POL_GoG_install POL_Wine_reboot POL_Shortcut "Technobabylon.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut "winsetup.exe" "$SHORTCUT_NAME Configuration Tool" "" "" "Game;AdventureGame;" 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