Tanki X

Informations

Créateur Messages
rlatrjsdn122 Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

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

Retours d'expérience

Description

Multiplayer online game in the arcade tank simulator genre. Tanki X is the successor to Tanki Online. Wikipedia.

Warning: this online game closed in 2020.

Captures d'écran

Miniature

Code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : 2017-11-26-2
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
#
# CHANGELOG
# [rlatrjsdn122] (2019-05-10 20-36)
#   Initial writting.
# [Dadu042] (2019-05-23 09-58)
#   Disable file checksum checking because the game receive many updates. URL is dead (to repair).
# [Dadu042] (2020-01-03 22:11)
#   Update download URL.
#   Fix POL_Shortcut.


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

TITLE="Tanki X"
PREFIX="tankix"
   
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
  
POL_SetupWindow_Init
  
POL_SetupWindow_message "NOTE! : This script is NOT stable." "Welcome"
  
POL_System_TmpCreate "tankixtemp"
  
POL_Wine_SelectPrefix "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-48606/TankiXSetup.exe"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi
  
POL_Wine_PrefixCreate
Set_OS "win7"

POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11
  
POL_Wine_OverrideDLL "" "d3d11"
  
POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"
  
POL_System_TmpDelete
  
POL_Shortcut "tankix.exe" "Tanki X" "" "" "Game;ActionGame;"
  
POL_SetupWindow_message "Enjoy your tanks!."
  
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 3 Janvier 2020 à 22:12
Dadu042

Information

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

Differences

@@ -6,10 +6,14 @@
 # Author : rlarjsdn122
 #
 # CHANGELOG
+# [rlatrjsdn122] (2019-05-10 20-36)
+#   Initial writting.
 # [Dadu042] (2019-05-23 09-58)
 #   Disable file checksum checking because the game receive many updates. URL is dead (to repair).
-# [rlatrjsdn122] (2019-05-10 20-36)
-#   Initial writting.  
+# [Dadu042] (2020-01-03 22:11)
+#   Update download URL.
+#   Fix POL_Shortcut.
+
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -38,7 +42,7 @@
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
    cd "$POL_System_TmpDir"
-   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe"
+   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-48606/TankiXSetup.exe"
    INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
 fi
   
@@ -58,7 +62,7 @@
   
 POL_System_TmpDelete
   
-POL_Shortcut "tankix.exe" "Tanki X" "Game;ActionGame;"
+POL_Shortcut "tankix.exe" "Tanki X" "" "" "Game;ActionGame;"
   
 POL_SetupWindow_message "Enjoy your tanks!."
   

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : 2017-11-26-2
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
#
# CHANGELOG
# [rlatrjsdn122] (2019-05-10 20-36)
#   Initial writting.
# [Dadu042] (2019-05-23 09-58)
#   Disable file checksum checking because the game receive many updates. URL is dead (to repair).
# [Dadu042] (2020-01-03 22:11)
#   Update download URL.
#   Fix POL_Shortcut.


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

TITLE="Tanki X"
PREFIX="tankix"
   
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
  
POL_SetupWindow_Init
  
POL_SetupWindow_message "NOTE! : This script is NOT stable." "Welcome"
  
POL_System_TmpCreate "tankixtemp"
  
POL_Wine_SelectPrefix "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-48606/TankiXSetup.exe"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi
  
POL_Wine_PrefixCreate
Set_OS "win7"

POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11
  
POL_Wine_OverrideDLL "" "d3d11"
  
POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"
  
POL_System_TmpDelete
  
POL_Shortcut "tankix.exe" "Tanki X" "" "" "Game;ActionGame;"
  
POL_SetupWindow_message "Enjoy your tanks!."
  
POL_SetupWindow_Close
exit

Réponses

Dadu042 Jeudi 23 Mai 2019 à 10:06
Dadu042

Warning

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

Messages

Read the changelog.

Differences

@@ -7,8 +7,8 @@
 #
 # CHANGELOG
 # [Dadu042] (2019-05-23 09-58)
-#   Disable file checksum checking because the game receive many updates. URL is dead (to change).
-# [Dadu042] (2019-05-10 20-36)
+#   Disable file checksum checking because the game receive many updates. URL is dead (to repair).
+# [rlatrjsdn122] (2019-05-10 20-36)
 #   Initial writting.  
 
 [ "$PLAYONLINUX" = "" ] && exit 0

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : 2017-11-26-2
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
#
# CHANGELOG
# [Dadu042] (2019-05-23 09-58)
#   Disable file checksum checking because the game receive many updates. URL is dead (to repair).
# [rlatrjsdn122] (2019-05-10 20-36)
#   Initial writting.  

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

TITLE="Tanki X"
PREFIX="tankix"
   
POL_SetupWindow_Init
  
POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
  
POL_SetupWindow_Init
  
POL_SetupWindow_message "NOTE! : This script is NOT stable." "Welcome"
  
POL_System_TmpCreate "tankixtemp"
  
POL_Wine_SelectPrefix "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi
  
POL_Wine_PrefixCreate
Set_OS "win7"

POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11
  
POL_Wine_OverrideDLL "" "d3d11"
  
POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"
  
POL_System_TmpDelete
  
POL_Shortcut "tankix.exe" "Tanki X" "Game;ActionGame;"
  
POL_SetupWindow_message "Enjoy your tanks!."
  
POL_SetupWindow_Close
exit

Réponses

Vendredi 3 Janvier 2020 à 22:09
Current Windows URL: http://static.tankix.com/app/StandaloneWindows/master-48606/TankiXSetup.exe

Edité par Dadu042

rlatrjsdn122 Dimanche 26 Novembre 2017 à 14:52
rlatrjsdn122 Anonymous

Warning

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

Messages

Some errors solved.

Differences

@@ -0,0 +1,59 @@
+#!/usr/bin/env playonlinux-bash
+# Date : 2017-11-26
+# Last revision : 2017-11-26-2
+# Wine version used : 1.7.55
+# Distribution used to test : Ubuntu 10.04 LTS
+# Author : rlarjsdn122
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="Tanki X"
+PREFIX="tankix"
+  
+POL_SetupWindow_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
+ 
+POL_SetupWindow_Init
+ 
+POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
+NOTE! : This script is NOT stable." "Welcome"
+ 
+POL_System_TmpCreate "tankixtemp"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+ 
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+ 
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+   POL_SetupWindow_browse "Select installation program" "File selection"
+   INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+   cd "$POL_System_TmpDir"
+   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
+   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
+fi
+ 
+POL_Wine_PrefixCreate
+Set_OS "win7"
+POL_Call POL_Install_d3dx9
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dx10
+POL_Call POL_Install_d3dx11
+ 
+POL_Wine_OverrideDLL "" "d3d11"
+ 
+POL_SetupWindow_wait "Please wait" "Installation in progress"
+POL_Wine "$INSTALLER"
+ 
+POL_System_TmpDelete
+ 
+POL_Shortcut "tankix.exe" "Tanki X"
+ 
+POL_SetupWindow_message "Enjoy your tanks!."
+ 
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : 2017-11-26-2
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Tanki X"
PREFIX="tankix"
  
POL_SetupWindow_Init
 
POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
 
POL_SetupWindow_Init
 
POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
NOTE! : This script is NOT stable." "Welcome"
 
POL_System_TmpCreate "tankixtemp"
 
POL_Wine_SelectPrefix "$PREFIX"
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi
 
POL_Wine_PrefixCreate
Set_OS "win7"
POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11
 
POL_Wine_OverrideDLL "" "d3d11"
 
POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"
 
POL_System_TmpDelete
 
POL_Shortcut "tankix.exe" "Tanki X"
 
POL_SetupWindow_message "Enjoy your tanks!."
 
POL_SetupWindow_Close
exit

Réponses

rlatrjsdn122 Dimanche 26 Novembre 2017 à 14:39
rlatrjsdn122 Anonymous

Warning

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

Differences

@@ -0,0 +1,59 @@
+#!/usr/bin/env playonlinux-bash
+# Date : 2017-11-26
+# Last revision : 2017-11-26-2
+# Wine version used : 1.7.55
+# Distribution used to test : Ubuntu 10.04 LTS
+# Author : rlarjsdn122
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Tanki X"
+PREFIX="tankix"
+ 
+POL_SetupWindow_Init
+
+POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
+
+POL_SetupWindow_Init
+
+POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
+NOTE! : This script is NOT stable." "Welcome"
+
+POL_System_TmpCreate "tankixtemp"
+
+POL_Wine_SelectPrefix "$PREFIX"
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+   POL_SetupWindow_browse "Select installation program" "File selection"
+   INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+   cd "$POL_System_TmpDir"
+   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
+   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
+fi
+
+POL_Wine_PrefixCreate
+Set_OS "win7"
+POL_Call POL_Install_d3dx9
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dx10
+POL_Call POL_Install_d3dx11
+
+POL_Wine_OverrideDLL "disable" "d3d11"
+
+POL_SetupWindow_wait "Please wait" "Installation in progress"
+POL_Wine "$INSTALLER"
+
+POL_System_TmpDelete
+
+POL_Shortcut "tankix.exe" "Tanki X"
+
+POL_SetupWindow_message "Enjoy your tanks!."
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : 2017-11-26-2
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Tanki X"
PREFIX="tankix"
 
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"

POL_SetupWindow_Init

POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
NOTE! : This script is NOT stable." "Welcome"

POL_System_TmpCreate "tankixtemp"

POL_Wine_SelectPrefix "$PREFIX"

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi

POL_Wine_PrefixCreate
Set_OS "win7"
POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11

POL_Wine_OverrideDLL "disable" "d3d11"

POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"

POL_System_TmpDelete

POL_Shortcut "tankix.exe" "Tanki X"

POL_SetupWindow_message "Enjoy your tanks!."

POL_SetupWindow_Close
exit

Réponses

rlatrjsdn122 Dimanche 26 Novembre 2017 à 14:08
rlatrjsdn122 Anonymous

Warning

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

Messages

Sorry for my mistake...

Differences

@@ -0,0 +1,57 @@
+#!/usr/bin/env playonlinux-bash
+# Date : 2017-11-26
+# Last revision : Current Version
+# Wine version used : 1.7.55
+# Distribution used to test : Ubuntu 10.04 LTS
+# Author : rlarjsdn122
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Tanki X"
+PREFIX="tankix"
+ 
+POL_SetupWindow_Init
+
+POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"
+
+POL_SetupWindow_Init
+
+POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
+NOTE! : This script is NOT stable." "Welcome"
+
+POL_System_TmpCreate "tankixtemp"
+
+POL_Wine_SelectPrefix "$PREFIX"
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+   POL_SetupWindow_browse "Select installation program" "File selection"
+   INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+   cd "$POL_System_TmpDir"
+   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
+   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
+fi
+
+POL_Wine_PrefixCreate
+Set_OS "win7"
+POL_Call POL_Install_d3dx9
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dcompiler_43
+POL_Call POL_Install_d3dx10
+POL_Call POL_Install_d3dx11
+
+POL_SetupWindow_wait "Please wait" "Installation in progress"
+POL_Wine "$INSTALLER"
+
+POL_System_TmpDelete
+
+POL_Shortcut "tankix.exe" "Tanki X"
+
+POL_SetupWindow_message "Auto installation is done. But you need to change libraries of Wine. Go to Wine library tab and add d3d11. Then disable it by a Edit option."
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : 2017-11-26
# Last revision : Current Version
# Wine version used : 1.7.55
# Distribution used to test : Ubuntu 10.04 LTS
# Author : rlarjsdn122
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Tanki X"
PREFIX="tankix"
 
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "AlternativaPlatform" "https://www.tankix.com/" "rlarjsdn122" "$PREFIX"

POL_SetupWindow_Init

POL_SetupWindow_message "Hello, Tanker! Welcome to installation of Tanki X for Linux.\n\n
NOTE! : This script is NOT stable." "Welcome"

POL_System_TmpCreate "tankixtemp"

POL_Wine_SelectPrefix "$PREFIX"

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"

if [ "$INSTALL_METHOD" = "LOCAL" ]
then
   POL_SetupWindow_browse "Select installation program" "File selection"
   INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
   cd "$POL_System_TmpDir"
   POL_Download "http://static.tankix.com/app/StandaloneWindows/master-8395/TankiXSetup.exe" "3f62245c49dac2b7ba33c002967439c6"
   INSTALLER="$POL_System_TmpDir/TankiXSetup.exe"
fi

POL_Wine_PrefixCreate
Set_OS "win7"
POL_Call POL_Install_d3dx9
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_d3dx10
POL_Call POL_Install_d3dx11

POL_SetupWindow_wait "Please wait" "Installation in progress"
POL_Wine "$INSTALLER"

POL_System_TmpDelete

POL_Shortcut "tankix.exe" "Tanki X"

POL_SetupWindow_message "Auto installation is done. But you need to change libraries of Wine. Go to Wine library tab and add d3d11. Then disable it by a Edit option."

POL_SetupWindow_Close
exit

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