Assassin's Creed III
Informations
| Créateur | Messages |
|---|---|
ImperatorS79
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionThe American Colonies, 1775. As a Native American assassin fights to protect his land and people, he will ignite the flames of a young nation’s revolution. Wikipedia. Code source#!/bin/bash
# Date conv:yy-mm-dd
# Date : (2017-07-23)
# Last revision : see changelog
# Wine version used : -
# Distribution used to test : Ubuntu 16.04
# Author : ImperatorS79
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [ImperatorS79] (2017-07-23)
# First script.
# [Dadu042] (2019-12-30)
# Wine "2.12-staging" -> system
#
## Begin Note ##
# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587
# Not from me, but inspired this script, it's a kind of test...
# Script inspired from AC2 script
## End Note ##
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Assassin's Creed III"
PREFIX="AssassinsCreed_III"
EDITOR="Ubisoft"
GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/"
AUTOR="ImperatorS79"
WORKING_WINE_VERSION=""
GAME_VMS="512"
# Starting the script
#POL_GetSetupImages "undefined" "undefine" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX"
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
#DVD maybe later
POL_SetupWindow_InstallMethod "STEAM"
# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
POL_Call POL_Install_steam
STEAM_ID="208480"
fi
# Not sure if it's needed
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
# 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" "" "steam://rungameid/$STEAM_ID"
POL_Shortcut "steam.exe" "Steam ($TITLE)" "" ""
# 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"
fi
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribuer| Membre | Messages |
| Dadu042 | Mardi 31 Décembre 2019 à 12:21 |
|
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,13 +1,20 @@
#!/bin/bash
# Date conv:yy-mm-dd
# Date : (2017-07-23)
-# Last revision : (2017-07-23)
+# Last revision : see changelog
# Wine version used : -
# Distribution used to test : Ubuntu 16.04
# Author : ImperatorS79
# Licence : Retail
# Only For : http://www.playonlinux.com
-
+#
+# CHANGELOG
+# [ImperatorS79] (2017-07-23)
+# First script.
+# [Dadu042] (2019-12-30)
+# Wine "2.12-staging" -> system
+#
+
## Begin Note ##
# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587
# Not from me, but inspired this script, it's a kind of test...
@@ -17,12 +24,12 @@
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-TITLE="Assassin's Creed 3"
-PREFIX="AssassinsCreed3"
+TITLE="Assassin's Creed III"
+PREFIX="AssassinsCreed_III"
EDITOR="Ubisoft"
GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/"
AUTOR="ImperatorS79"
-WORKING_WINE_VERSION="2.12-staging"
+WORKING_WINE_VERSION=""
GAME_VMS="512"
# Starting the script
@@ -49,19 +56,18 @@
POL_Call POL_Install_steam
STEAM_ID="208480"
fi
-
-#Not sure if it's needed
+
+# Not sure if it's needed
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher
-
-# Asking about memory size of graphic card
-POL_SetupWindow_VMS "$GAME_VMS"
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver
-
+
+# Asking about memory size of graphic card
+POL_SetupWindow_VMS "$GAME_VMS"
+
# Begin game installation
-
if [ "$INSTALL_METHOD" == "STEAM" ]; then
# Mandatory pre-install fix for steam
POL_Call POL_Install_steam_flags "$STEAM_ID"
Nouveau code source#!/bin/bash
# Date conv:yy-mm-dd
# Date : (2017-07-23)
# Last revision : see changelog
# Wine version used : -
# Distribution used to test : Ubuntu 16.04
# Author : ImperatorS79
# Licence : Retail
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [ImperatorS79] (2017-07-23)
# First script.
# [Dadu042] (2019-12-30)
# Wine "2.12-staging" -> system
#
## Begin Note ##
# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587
# Not from me, but inspired this script, it's a kind of test...
# Script inspired from AC2 script
## End Note ##
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Assassin's Creed III"
PREFIX="AssassinsCreed_III"
EDITOR="Ubisoft"
GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/"
AUTOR="ImperatorS79"
WORKING_WINE_VERSION=""
GAME_VMS="512"
# Starting the script
#POL_GetSetupImages "undefined" "undefine" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX"
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
#DVD maybe later
POL_SetupWindow_InstallMethod "STEAM"
# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
POL_Call POL_Install_steam
STEAM_ID="208480"
fi
# Not sure if it's needed
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
# 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" "" "steam://rungameid/$STEAM_ID"
POL_Shortcut "steam.exe" "Steam ($TITLE)" "" ""
# 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"
fi
POL_SetupWindow_Close
exit 0 Réponses |
| ImperatorS79 | Dimanche 23 Juillet 2017 à 13:19 |
ImperatorS79
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWrong date sorry Differences@@ -0,0 +1,79 @@ +#!/bin/bash +# Date conv:yy-mm-dd +# Date : (2017-07-23) +# Last revision : (2017-07-23) +# Wine version used : - +# Distribution used to test : Ubuntu 16.04 +# Author : ImperatorS79 +# Licence : Retail +# Only For : http://www.playonlinux.com + +## Begin Note ## +# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587 +# Not from me, but inspired this script, it's a kind of test... +# Script inspired from AC2 script +## End Note ## + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Assassin's Creed 3" +PREFIX="AssassinsCreed3" +EDITOR="Ubisoft" +GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/" +AUTOR="ImperatorS79" +WORKING_WINE_VERSION="2.12-staging" +GAME_VMS="512" + +# Starting the script +#POL_GetSetupImages "undefined" "undefine" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Downloading wine if necessary and creating prefix +POL_System_SetArch "x64" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +#DVD maybe later +POL_SetupWindow_InstallMethod "STEAM" + +# Installing mandatory dependencies +if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_Call POL_Install_steam + STEAM_ID="208480" +fi + +#Not sure if it's needed +POL_Call POL_Install_physx +POL_Call POL_Install_ubigamelauncher + +# Asking about memory size of graphic card +POL_SetupWindow_VMS "$GAME_VMS" + +# Set Graphic Card informations keys for wine +POL_Wine_SetVideoDriver + +# Begin game installation + +if [ "$INSTALL_METHOD" == "STEAM" ]; then + # 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" "" "steam://rungameid/$STEAM_ID" + POL_Shortcut "steam.exe" "Steam ($TITLE)" "" "" + # 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" +fi + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash
# Date conv:yy-mm-dd
# Date : (2017-07-23)
# Last revision : (2017-07-23)
# Wine version used : -
# Distribution used to test : Ubuntu 16.04
# Author : ImperatorS79
# Licence : Retail
# Only For : http://www.playonlinux.com
## Begin Note ##
# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587
# Not from me, but inspired this script, it's a kind of test...
# Script inspired from AC2 script
## End Note ##
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Assassin's Creed 3"
PREFIX="AssassinsCreed3"
EDITOR="Ubisoft"
GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/"
AUTOR="ImperatorS79"
WORKING_WINE_VERSION="2.12-staging"
GAME_VMS="512"
# Starting the script
#POL_GetSetupImages "undefined" "undefine" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX"
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
#DVD maybe later
POL_SetupWindow_InstallMethod "STEAM"
# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
POL_Call POL_Install_steam
STEAM_ID="208480"
fi
#Not sure if it's needed
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
# 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" "" "steam://rungameid/$STEAM_ID"
POL_Shortcut "steam.exe" "Steam ($TITLE)" "" ""
# 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"
fi
POL_SetupWindow_Close
exit 0 Réponses |
| ImperatorS79 | Dimanche 23 Juillet 2017 à 13:17 |
ImperatorS79
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFirst version of the script with wine staging 2.12. Maybe this need directx11 override, feel free to test Normally should work ->https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587 Differences@@ -0,0 +1,79 @@ +#!/bin/bash +# Date conv:yy-mm-dd +# Date : (2017-06-23) +# Last revision : (2017-06-23) +# Wine version used : - +# Distribution used to test : Ubuntu 16.04 +# Author : ImperatorS79 +# Licence : Retail +# Only For : http://www.playonlinux.com + +## Begin Note ## +# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587 +# Not from me, but inspired this script, it's a kind of test... +# Script inspired from AC2 script +## End Note ## + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Assassin's Creed 3" +PREFIX="AssassinsCreed3" +EDITOR="Ubisoft" +GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/" +AUTOR="ImperatorS79" +WORKING_WINE_VERSION="2.12-staging" +GAME_VMS="512" + +# Starting the script +#POL_GetSetupImages "undefined" "undefine" "$TITLE" +POL_SetupWindow_Init + +# Starting debugging API +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX" + +# Setting prefix path +POL_Wine_SelectPrefix "$PREFIX" + +# Downloading wine if necessary and creating prefix +POL_System_SetArch "x64" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +#DVD maybe later +POL_SetupWindow_InstallMethod "STEAM" + +# Installing mandatory dependencies +if [ "$INSTALL_METHOD" == "STEAM" ]; then + POL_Call POL_Install_steam + STEAM_ID="208480" +fi + +#Not sure if it's needed +POL_Call POL_Install_physx +POL_Call POL_Install_ubigamelauncher + +# Asking about memory size of graphic card +POL_SetupWindow_VMS "$GAME_VMS" + +# Set Graphic Card informations keys for wine +POL_Wine_SetVideoDriver + +# Begin game installation + +if [ "$INSTALL_METHOD" == "STEAM" ]; then + # 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" "" "steam://rungameid/$STEAM_ID" + POL_Shortcut "steam.exe" "Steam ($TITLE)" "" "" + # 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" +fi + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash
# Date conv:yy-mm-dd
# Date : (2017-06-23)
# Last revision : (2017-06-23)
# Wine version used : -
# Distribution used to test : Ubuntu 16.04
# Author : ImperatorS79
# Licence : Retail
# Only For : http://www.playonlinux.com
## Begin Note ##
# see https://appdb.winehq.org/objectManager.php?sClass=version&iId=34587
# Not from me, but inspired this script, it's a kind of test...
# Script inspired from AC2 script
## End Note ##
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Assassin's Creed 3"
PREFIX="AssassinsCreed3"
EDITOR="Ubisoft"
GAME_URL="https://www.ubisoft.com/fr-fr/game/assassins-creed-3/"
AUTOR="ImperatorS79"
WORKING_WINE_VERSION="2.12-staging"
GAME_VMS="512"
# Starting the script
#POL_GetSetupImages "undefined" "undefine" "$TITLE"
POL_SetupWindow_Init
# Starting debugging API
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTOR" "$PREFIX"
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
#DVD maybe later
POL_SetupWindow_InstallMethod "STEAM"
# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
POL_Call POL_Install_steam
STEAM_ID="208480"
fi
#Not sure if it's needed
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher
# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
# 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" "" "steam://rungameid/$STEAM_ID"
POL_Shortcut "steam.exe" "Steam ($TITLE)" "" ""
# 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"
fi
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
Installer ce programme