Talisman: Digital Edition
Informations
Creator | Message |
---|---|
foz
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks0 0 DescriptionTalisman: Digital Edition is a fantasy-themed adventure board game, 2012. Wikipedia. Source code#!/bin/bash # Date : (2014-07-16 19:00) # Last revision : (2014-07-16 19:30) # Wine version used : 1.7.15 # Distribution used to test : Ubuntu 14.04 # Author : Foz # Licence : Retail # Only For : http://www.playonlinux.com # # CHANGELOG # [Foz] (2014-07-16) # First script. # [Dadu042] (2019-12-18) # Wine 1.7.15 -> 2.22. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Talisman: Digital Edition" PREFIX="TalismanDigital" EDITOR="Nomad Games" GAME_URL="http://www.talisman-game.com/" AUTHOR="Foz" STEAM_ID="247000" WORKING_WINE_VERSION="2.22" # Starting the script POL_SetupWindow_Init # Starting debugging API POL_Debug_Init # Open dialogue box POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Disable Steam In Game Overlay POL_Wine_OverrideDLL "" "gameoverlayrenderer" # Begin game installation # 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" # 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" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Tuesday 17 December 2019 at 19:59 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -6,17 +6,23 @@ # Author : Foz # Licence : Retail # Only For : http://www.playonlinux.com - +# +# CHANGELOG +# [Foz] (2014-07-16) +# First script. +# [Dadu042] (2019-12-18) +# Wine 1.7.15 -> 2.22. + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Talisman: Digital Edition" PREFIX="TalismanDigital" EDITOR="Nomad Games" GAME_URL="http://www.talisman-game.com/" AUTHOR="Foz" STEAM_ID="247000" -WORKING_WINE_VERSION="1.7.15" +WORKING_WINE_VERSION="2.22" # Starting the script POL_SetupWindow_Init New source code#!/bin/bash # Date : (2014-07-16 19:00) # Last revision : (2014-07-16 19:30) # Wine version used : 1.7.15 # Distribution used to test : Ubuntu 14.04 # Author : Foz # Licence : Retail # Only For : http://www.playonlinux.com # # CHANGELOG # [Foz] (2014-07-16) # First script. # [Dadu042] (2019-12-18) # Wine 1.7.15 -> 2.22. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Talisman: Digital Edition" PREFIX="TalismanDigital" EDITOR="Nomad Games" GAME_URL="http://www.talisman-game.com/" AUTHOR="Foz" STEAM_ID="247000" WORKING_WINE_VERSION="2.22" # Starting the script POL_SetupWindow_Init # Starting debugging API POL_Debug_Init # Open dialogue box POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Disable Steam In Game Overlay POL_Wine_OverrideDLL "" "gameoverlayrenderer" # Begin game installation # 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" # 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" POL_SetupWindow_Close exit 0 Replies |
foz | Wednesday 16 July 2014 at 20:42 |
foz
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,62 @@ +#!/bin/bash +# Date : (2014-07-16 19:00) +# Last revision : (2014-07-16 19:30) +# Wine version used : 1.7.15 +# Distribution used to test : Ubuntu 14.04 +# Author : Foz +# Licence : Retail +# Only For : http://www.playonlinux.com + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Talisman: Digital Edition" +PREFIX="TalismanDigital" +EDITOR="Nomad Games" +GAME_URL="http://www.talisman-game.com/" +AUTHOR="Foz" +STEAM_ID="247000" +WORKING_WINE_VERSION="1.7.15" + +# Starting the script +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +# Open dialogue box +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Determine Architecture +POL_System_SetArch "x86" + +# Downloading wine if necessary and creating prefix +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +# Installing mandatory dependencies +POL_Call POL_Install_steam + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Disable Steam In Game Overlay +POL_Wine_OverrideDLL "" "gameoverlayrenderer" + +# Begin game installation +# 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" + +# 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" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2014-07-16 19:00) # Last revision : (2014-07-16 19:30) # Wine version used : 1.7.15 # Distribution used to test : Ubuntu 14.04 # Author : Foz # Licence : Retail # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Talisman: Digital Edition" PREFIX="TalismanDigital" EDITOR="Nomad Games" GAME_URL="http://www.talisman-game.com/" AUTHOR="Foz" STEAM_ID="247000" WORKING_WINE_VERSION="1.7.15" # Starting the script POL_SetupWindow_Init # Starting debugging API POL_Debug_Init # Open dialogue box POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Setting prefix path POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture POL_System_SetArch "x86" # Downloading wine if necessary and creating prefix POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Installing mandatory dependencies POL_Call POL_Install_steam # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver # Disable Steam In Game Overlay POL_Wine_OverrideDLL "" "gameoverlayrenderer" # Begin game installation # 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" # 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" POL_SetupWindow_Close exit 0 RepliesWednesday 16 July 2014 at 23:09
|
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