You are here
GOG.com - Black Mirror 3
Informations
Creator | Message |
---|---|
Okto
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionThe third, and final part of the series. Released in 2011. Wikipedia. Source code#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-05-08 18-54) # Initial script, for the GOG release. # [Dadu042] (2020-01-25 11:10) # Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Saturday 25 January 2020 at 12:06 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -3,13 +3,19 @@ # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy +# +# CHANGELOG +# [Benjamin Hardy] (2015-05-08 18-54) +# Initial script, for the GOG release. +# [Dadu042] (2020-01-25 11:10) +# Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" -WINEVERSION="1.6.2" +WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" New source code#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-05-08 18-54) # Initial script, for the GOG release. # [Dadu042] (2020-01-25 11:10) # Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" POL_SetupWindow_Close exit 0 Replies |
Okto | Saturday 9 May 2015 at 21:58 |
Okto
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,39 @@ +#!/bin/bash +# Date : (2015-05-08 18-54) +# Wine version used : 1.6.2 +# Distribution used to test : OpenSUSE 13.2 +# Author : Benjamin Hardy + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="GOG.com - Black Mirror 3" +PREFIX="BlackMirror3" +WINEVERSION="1.6.2" +SHORTCUT_NAME="Black Mirror 3" +GOGID="black_mirror_3" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" + +POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" + +POL_Call POL_GoG_install + +POL_SetupWindow_VMS "128" + +POL_Wine_reboot + +POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" +POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" + +POL_SetupWindow_Close + +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="1.6.2" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" 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