Vous êtes ici
South Park: The Stick of Truth
Informations
Créateur | Messages |
---|---|
dizlexic
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionRPG game, 2014. Wikipedia. Installer for Steam. Tested on Ubuntu 15.10 Code source#!/bin/bash # Date : (2015-02-15) # Distribution used to test : Ubuntu 15.10 64-bit # Author : Daniel Moore # Licence : GPLv3 # PlayOnLinux: 4.2.6 # # CHANGELOG # [Daniel Moore] (2015-02-15) # Initial script. # [Dadu042] (2020-01-16 22:00) # Wine 1.7.39 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="SouthParkTheStickofTruth" WINEVERSION="2.22" TITLE="South Park™: The Stick of Truth™" EDITOR="Sublime Text 2" GAME_URL="http://southpark.ubi.com/stickoftruth/" STEAM_ID="213670" AUTHOR="DanielMoore" #Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 16 Janvier 2020 à 22:23 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -4,13 +4,18 @@ # Author : Daniel Moore # Licence : GPLv3 # PlayOnLinux: 4.2.6 - +# +# CHANGELOG +# [Daniel Moore] (2015-02-15) +# Initial script. +# [Dadu042] (2020-01-16 22:00) +# Wine 1.7.39 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="SouthParkTheStickofTruth" -WINEVERSION="1.7.39" +WINEVERSION="2.22" TITLE="South Park™: The Stick of Truth™" EDITOR="Sublime Text 2" GAME_URL="http://southpark.ubi.com/stickoftruth/" Nouveau code source#!/bin/bash # Date : (2015-02-15) # Distribution used to test : Ubuntu 15.10 64-bit # Author : Daniel Moore # Licence : GPLv3 # PlayOnLinux: 4.2.6 # # CHANGELOG # [Daniel Moore] (2015-02-15) # Initial script. # [Dadu042] (2020-01-16 22:00) # Wine 1.7.39 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="SouthParkTheStickofTruth" WINEVERSION="2.22" TITLE="South Park™: The Stick of Truth™" EDITOR="Sublime Text 2" GAME_URL="http://southpark.ubi.com/stickoftruth/" STEAM_ID="213670" AUTHOR="DanielMoore" #Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" POL_SetupWindow_Close exit 0 Réponses |
dizlexic | Samedi 13 Février 2016 à 3:19 |
dizlexic
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,50 @@ +#!/bin/bash +# Date : (2015-02-15) +# Distribution used to test : Ubuntu 15.10 64-bit +# Author : Daniel Moore +# Licence : GPLv3 +# PlayOnLinux: 4.2.6 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="SouthParkTheStickofTruth" +WINEVERSION="1.7.39" +TITLE="South Park™: The Stick of Truth™" +EDITOR="Sublime Text 2" +GAME_URL="http://southpark.ubi.com/stickoftruth/" +STEAM_ID="213670" + +AUTHOR="DanielMoore" + +#Initialization +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" + +#Dependencies +POL_Call POL_Install_steam + +# Installation +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" +POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID +POL_Wine_WaitExit "$TITLE" + +# Create Shortcut +POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2015-02-15) # Distribution used to test : Ubuntu 15.10 64-bit # Author : Daniel Moore # Licence : GPLv3 # PlayOnLinux: 4.2.6 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="SouthParkTheStickofTruth" WINEVERSION="1.7.39" TITLE="South Park™: The Stick of Truth™" EDITOR="Sublime Text 2" GAME_URL="http://southpark.ubi.com/stickoftruth/" STEAM_ID="213670" AUTHOR="DanielMoore" #Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" POL_SetupWindow_message "$(eval_gettext 'NOTICE: $TITLE will be installed via Steam. After Steam is installed, uncheck Run Steam, click Finish, and Steam will restart. Sign in and install $TITLE.')" "$TITLE" #Dependencies POL_Call POL_Install_steam # Installation cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID POL_Wine_WaitExit "$TITLE" # Create Shortcut POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID" 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