Assassin's Creed III

Informations

Creator Message
ImperatorS79 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 13802
Wine:

Feedbacks

Description

The 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.

Appdb.winehq.org

Source code

#!/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:

Contribute
Member Message
Dadu042 Tuesday 31 December 2019 at 12:21
Dadu042

Information

This update has been approved by the team.

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"

New source code

#!/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

Replies

ImperatorS79 Sunday 23 July 2017 at 13:19
ImperatorS79 Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Wrong 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

New source code

#!/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

Replies

ImperatorS79 Sunday 23 July 2017 at 13:17
ImperatorS79 Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

First 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

New source code

#!/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

Replies