Assassin's Creed Brotherhood

Informations

Créateur Messages
GNU_Raziel

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 130335
Wine: 1.7.46-staging

Retours d'expérience

Description

Français :
Profitant d'un repos bien mérité dans sa villa de Montereggioni, Ezio Auditore croyait sa mission terminée après avoir mis la main sur la Pomme d'Eden. Mais il n'est pas de repos pour l'Assassin qui va devoir faire face aux représailles de la famille Borgia carrément venue attaquer son domaine. Une famille de grands malades despotiques confortablement installée à Rome qu'elle contrôle politiquement, économiquement et religieusement. Pour chercher vengeance et surtout récupérer une fois de plus cette satanée pomme, Ezio devra donc aller frapper les Borgia sur leur territoire et leur reprendre la ville.

English :
Using the Animus 2.0, Desmond attempted to relive one of the late memories of his ancestor, Ezio Auditore, hoping that it would reveal the location of the Apple. However, instead of entering the 1507 memory, he was forced into a different one, occurring during a battle in Viana. From there, as Ezio looked upon the besieged Viana Castle, he recalled the similar events of the siege of Monteriggioni, subsequently forcing Desmond back further, into a memory from 1499.

Captures d'écran

MiniatureMiniatureMiniature

Code source

#!/bin/bash
# Date : (2011-21-03 21-00)
# Last revision : (2012-05-10 21:00)
# Wine version used : 1.3.15-MousePbPatch, 1.3.23, 1.3.26, 1.3.27, 1.5.3-ubisoft2
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com

## Begin Note ##
# Used patch to fix "ReadFileEx failture", see Bug #28119 - http://bugs.winehq.org/show_bug.cgi?id=28119
# this patch is no longer needed 
## End Note ##

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Assassin's Creed Brotherhood"
PREFIX="AssassinsCreedBrotherhood"
EDITOR="Ubisoft"
GAME_URL="http://assassinscreed.uk.ubi.com/"
AUTOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.46-staging"
GAME_VMS="512"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ACB/top.jpg" "http://files.playonlinux.com/resources/setups/ACB/left.jpg" "$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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL"

# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        STEAM_ID="48190"
fi
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver

# "Missing folder" crash fix
WINE_USER=`id -un`
mkdir -p "$WINEPREFIX/drive_c/users/$WINE_USER/Saved Games/"

# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix

# Begin game installation
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        # Killing unwanted sub-process perturbating install
        sleep 10
        killall -9 "install.exe"
        POL_Wine_WaitExit "$TITLE"
elif [ "$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"
else
        # Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Making shortcut
if [ "$INSTALL_METHOD" != "STEAM" ]; then
        POL_Shortcut "AssassinsCreedBrotherhood.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
deri82 Vendredi 10 Juillet 2015 à 13:18
deri82 Anonymous

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -9,6 +9,7 @@
 
 ## Begin Note ##
 # Used patch to fix "ReadFileEx failture", see Bug #28119 - http://bugs.winehq.org/show_bug.cgi?id=28119
+# this patch is no longer needed 
 ## End Note ##
 
 [ "$PLAYONLINUX" = "" ] && exit 0
@@ -19,8 +20,8 @@
 EDITOR="Ubisoft"
 GAME_URL="http://assassinscreed.uk.ubi.com/"
 AUTOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.5.3-ubisoft2"
-GAME_VMS="256"
+WORKING_WINE_VERSION="1.7.46-staging"
+GAME_VMS="512"
 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ACB/top.jpg" "http://files.playonlinux.com/resources/setups/ACB/left.jpg" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2011-21-03 21-00)
# Last revision : (2012-05-10 21:00)
# Wine version used : 1.3.15-MousePbPatch, 1.3.23, 1.3.26, 1.3.27, 1.5.3-ubisoft2
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com

## Begin Note ##
# Used patch to fix "ReadFileEx failture", see Bug #28119 - http://bugs.winehq.org/show_bug.cgi?id=28119
# this patch is no longer needed 
## End Note ##

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Assassin's Creed Brotherhood"
PREFIX="AssassinsCreedBrotherhood"
EDITOR="Ubisoft"
GAME_URL="http://assassinscreed.uk.ubi.com/"
AUTOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.46-staging"
GAME_VMS="512"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ACB/top.jpg" "http://files.playonlinux.com/resources/setups/ACB/left.jpg" "$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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL"

# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        STEAM_ID="48190"
fi
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver

# "Missing folder" crash fix
WINE_USER=`id -un`
mkdir -p "$WINEPREFIX/drive_c/users/$WINE_USER/Saved Games/"

# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix

# Begin game installation
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        # Killing unwanted sub-process perturbating install
        sleep 10
        killall -9 "install.exe"
        POL_Wine_WaitExit "$TITLE"
elif [ "$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"
else
        # Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Making shortcut
if [ "$INSTALL_METHOD" != "STEAM" ]; then
        POL_Shortcut "AssassinsCreedBrotherhood.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Réponses

deri82 Dimanche 5 Juillet 2015 à 7:46
deri82 Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -1,6 +1,6 @@
 #!/bin/bash
 # Date : (2011-21-03 21-00)
-# Last revision : (2012-05-10 21:00)
+# Last revision : (2015-5-7 year, day, month)
 # Wine version used : 1.3.15-MousePbPatch, 1.3.23, 1.3.26, 1.3.27, 1.5.3-ubisoft2
 # Distribution used to test : Debian Testing x64
 # Author : GNU_Raziel
@@ -9,6 +9,7 @@
 
 ## Begin Note ##
 # Used patch to fix "ReadFileEx failture", see Bug #28119 - http://bugs.winehq.org/show_bug.cgi?id=28119
+# bug #28119 is marked fixed in 1.5.7.
 ## End Note ##
 
 [ "$PLAYONLINUX" = "" ] && exit 0
@@ -19,7 +20,7 @@
 EDITOR="Ubisoft"
 GAME_URL="http://assassinscreed.uk.ubi.com/"
 AUTOR="GNU_Raziel"
-WORKING_WINE_VERSION="1.5.3-ubisoft2"
+WORKING_WINE_VERSION="1.7.46"
 GAME_VMS="256"
 
 # Starting the script

Nouveau code source

#!/bin/bash
# Date : (2011-21-03 21-00)
# Last revision : (2015-5-7 year, day, month)
# Wine version used : 1.3.15-MousePbPatch, 1.3.23, 1.3.26, 1.3.27, 1.5.3-ubisoft2
# Distribution used to test : Debian Testing x64
# Author : GNU_Raziel
# Licence : Retail
# Only For : http://www.playonlinux.com

## Begin Note ##
# Used patch to fix "ReadFileEx failture", see Bug #28119 - http://bugs.winehq.org/show_bug.cgi?id=28119
# bug #28119 is marked fixed in 1.5.7.
## End Note ##

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Assassin's Creed Brotherhood"
PREFIX="AssassinsCreedBrotherhood"
EDITOR="Ubisoft"
GAME_URL="http://assassinscreed.uk.ubi.com/"
AUTOR="GNU_Raziel"
WORKING_WINE_VERSION="1.7.46"
GAME_VMS="256"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/ACB/top.jpg" "http://files.playonlinux.com/resources/setups/ACB/left.jpg" "$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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,STEAM,LOCAL"

# Installing mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        STEAM_ID="48190"
fi
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_physx
POL_Call POL_Install_ubigamelauncher

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

## Fix for this game
# Set Graphic Card informations keys for wine
POL_Wine_SetVideoDriver

# "Missing folder" crash fix
WINE_USER=`id -un`
mkdir -p "$WINEPREFIX/drive_c/users/$WINE_USER/Saved Games/"

# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix

# Begin game installation
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Asking for CDROM and checking if it's correct one
        POL_SetupWindow_message "$(eval_gettext 'Please insert game media into your disk drive\nif not already done.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        # Killing unwanted sub-process perturbating install
        sleep 10
        killall -9 "install.exe"
        POL_Wine_WaitExit "$TITLE"
elif [ "$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"
else
        # Asking then installing DDV of the game
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run:')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
fi

# Making shortcut
if [ "$INSTALL_METHOD" != "STEAM" ]; then
        POL_Shortcut "AssassinsCreedBrotherhood.exe" "$TITLE" "$TITLE.png" ""
fi

POL_SetupWindow_Close
exit 0

Réponses

Dimanche 5 Juillet 2015 à 8:16
It would be great if your changes came with some comment on what they're doing
Dimanche 5 Juillet 2015 à 8:17
Is is no longer necessary to use a patched Wine version?
Anonymous
Vendredi 10 Juillet 2015 à 13:02
The bug mentioned pol script is marked fixed long ago with newer wine versions. There shouldnt be any reason to use patched wine anymore. I am testing the new script now.
Anonymous
Vendredi 10 Juillet 2015 à 13:26
The steam client doesnt show any readable text. Should disable dwrite somewhow via script
IceCriime Mardi 29 Juillet 2014 à 1:51
IceCriime Anonymous

Messages

Bonsoir, je viens d'installer ACB sur mon Asus N56VM (Technologie optimus Nvidia 630M et Intel® Ivybridge Mobile, Intel® Core™ i7-3610QM CPU @ 2.30GHz × 8, 8go de ram) via le script proposé par PoL. Je n'ai à l'heure qu'il est pas fais d'autres réglages (wine etc) mais je constate pas mal de ralentissement/saccade (mais reste tout à fait jouable). Quelques petits conseilles/réglages pour améliorer tout cela? 

Merci d'avence. 

Cordalement, la glace tueuse. 

Réponses

Anonymous
Mardi 29 Juillet 2014 à 1:53
Petit...fail.. J'ai oublié d'ajouter que je suis sous Ubuntu 14.04 LTS