Deadpool The Game

Informations

Creator Message
luyz25

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 44084
Wine: System

Feedbacks

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.

Source code

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

Contribute
Member Message
Dadu042 Thursday 2 January 2020 at 23:00
Dadu042

Information

This update has been approved by the team.

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

New source code

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

Replies

Dadu042 Thursday 2 January 2020 at 22:59
Dadu042

Warning

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

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

New source code

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

Replies

ronitbasnet Friday 16 February 2018 at 8:39
ronitbasnet Anonymous

Message

very nice games

Replies

Anonymous
Friday 11 May 2018 at 10:12
Looks like a really fun point-n-click game, how is the dialog? Are the puzzles difficult?
Doctor Who Thursday 21 January 2016 at 21:58
Doctor Who

Message

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)

Replies

LinuxScripter Sunday 17 January 2016 at 12:55
LinuxScripter Anonymous

Message

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

Replies