Deadpool The Game

Informations

Créateur Messages
luyz25

Information

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

Informations

Plate-formes :
Téléchargements : 44169
Wine: System

Retours d'expérience

Description

Superhero action-adventure video game, 2013. Wikipedia.

 

  • English: The game work's everything in high video graphic. Only the extra mode don't work.
  • Português Brasil: O jogo funciona completamente em qualidade alta, apenas o modo extra não funciona.

Code source

#!/bin/bash
# Date : (2014-05-21 21-00)
# Wine version used : system
# Distribution used to test : Ubuntu 14.04 x64
# Author : luyz25
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [luyz25] (2014-05-21 21-00)
#   First script.
# [Dadu042] (2019-12-19 20:50)
#   Wine 1.7.18 -> system

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

TITLE="Deadpool The Game"
PREFIX="DeadpoolTheGame"
GAME_VMS="512"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 2036

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "ActiVision" "http://www.activision.com/games/deadpool/deadpool" "luyz25" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate

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

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.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "icon.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        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

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Making shortcut
POL_Shortcut "DP.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Jeudi 2 Janvier 2020 à 23:00
Dadu042

Information

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

Differences

@@ -16,8 +16,7 @@
 
 TITLE="Deadpool The Game"
 PREFIX="DeadpoolTheGame"
-# WORKING_WINE_VERSION="1.7.18"
-GAME_VMS=512
+GAME_VMS="512"
 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
@@ -35,7 +34,6 @@
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "auto"
-# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 POL_Wine_PrefixCreate
 
 # Choose between DVD and Digital Download version

Nouveau code source

#!/bin/bash
# Date : (2014-05-21 21-00)
# Wine version used : system
# Distribution used to test : Ubuntu 14.04 x64
# Author : luyz25
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [luyz25] (2014-05-21 21-00)
#   First script.
# [Dadu042] (2019-12-19 20:50)
#   Wine 1.7.18 -> system

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

TITLE="Deadpool The Game"
PREFIX="DeadpoolTheGame"
GAME_VMS="512"

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 2036

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "ActiVision" "http://www.activision.com/games/deadpool/deadpool" "luyz25" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate

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

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.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "icon.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        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

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Making shortcut
POL_Shortcut "DP.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Jeudi 2 Janvier 2020 à 22:59
Dadu042

Warning

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

Differences

@@ -1,16 +1,22 @@
 #!/bin/bash
 # Date : (2014-05-21 21-00)
-# Wine version used : 1.7.18
+# Wine version used : system
 # Distribution used to test : Ubuntu 14.04 x64
 # Author : luyz25
 # Only For : http://www.playonlinux.com
+#
+# CHANGELOG
+# [luyz25] (2014-05-21 21-00)
+#   First script.
+# [Dadu042] (2019-12-19 20:50)
+#   Wine 1.7.18 -> system
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Deadpool The Game"
 PREFIX="DeadpoolTheGame"
-WORKING_WINE_VERSION="1.7.18"
+# WORKING_WINE_VERSION="1.7.18"
 GAME_VMS=512
 
 # Starting the script
@@ -29,7 +35,8 @@
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "auto"
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_Wine_PrefixCreate
 
 # Choose between DVD and Digital Download version
 POL_SetupWindow_InstallMethod "DVD,LOCAL"
@@ -50,14 +57,14 @@
         POL_Wine_WaitExit "$TITLE"
 fi
 
-# Asking about memory size of graphic card
-POL_SetupWindow_VMS $GAME_VMS
-
 # Set Graphic Card information keys for wine
 POL_Wine_SetVideoDriver
 
+# Asking about memory size of graphic card
+POL_SetupWindow_VMS $GAME_VMS
+
 # Making shortcut
-POL_Shortcut "DP.exe" "$TITLE"
+POL_Shortcut "DP.exe" "$TITLE" "" "" "Game;"
 
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2014-05-21 21-00)
# Wine version used : system
# Distribution used to test : Ubuntu 14.04 x64
# Author : luyz25
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [luyz25] (2014-05-21 21-00)
#   First script.
# [Dadu042] (2019-12-19 20:50)
#   Wine 1.7.18 -> system

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

TITLE="Deadpool The Game"
PREFIX="DeadpoolTheGame"
# WORKING_WINE_VERSION="1.7.18"
GAME_VMS=512

# Starting the script
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 2036

# Starting debugging API
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "ActiVision" "http://www.activision.com/games/deadpool/deadpool" "luyz25" "$PREFIX"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"

# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
# POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Wine_PrefixCreate

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

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.')"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "icon.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        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

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Making shortcut
POL_Shortcut "DP.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close
exit 0

Réponses

ronitbasnet Vendredi 16 Février 2018 à 8:39
ronitbasnet Anonymous

Messages

very nice games

Réponses

Anonymous
Vendredi 11 Mai 2018 à 10:12
Looks like a really fun point-n-click game, how is the dialog? Are the puzzles difficult?
Doctor Who Jeudi 21 Janvier 2016 à 21:58
Doctor Who

Messages

Everythiong is perfect. Game is working smoothy :)

Have you some tips to play with Xbox controller instead keyboard (quite hard to play)

My controller is not recognize by POL or Deadpool :(  (but work under steam Linux for example)

Réponses

LinuxScripter Dimanche 17 Janvier 2016 à 12:55
LinuxScripter Anonymous

Messages

I got this error right after launching the game:

err:module:attach_process_dlls "wined3d.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Games\\Deadpool\\Binaries\\DP.exe" failed, status c0000005

Réponses