World Of Warplanes

Informations

Creator Message
Massawi33

Warning

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

Informations

Platforms:
Downloads: 22923
Wine: 4.21

Feedbacks

Description

Flight combat MMO action game; set in the Golden Age of military aviation. Wikipedia.

Warning: As of may 2020, the game might now fail to install, because the installation became impossible without the 'Wargaming.net Game Center' (appdb.winehq.org).

AppDB.winehq.org. PCGamingWiki.

Source code

#!/bin/bash
# Date : (2013-03-30)
# Last revision : (2013-03-30)
# Distribution used to test : Ubuntu-gnome 64
# Author : Massawi33
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.2.2


# CHANGELOG:
# [max252] (2014)
#   Initial write ?.
# [Dadu042] (2020-01-09) (not tested)
#   Wine 1.17.12 -> 4.21
#   Add GPU setting.
# [Dadu042] (2020-01-09 19:55)
#   Wine 4.21 -> 4.0.3 (more economical because this script is not tested).

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

TITLE="WorldOfWarplanes"
PREFIX="WOWarplanes"
WORKING_WINE_VERSION="4.21"
PUBLISHER="BigWorld Technology"
GAME_URL="http://worldofwarplanes.com/"
AUTHOR="Massawi33"
GAME_VMS="128"

# Setup
POL_SetupWindow_Init
POL_SetupWindow_SetID 1983
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE will not work with $APPLICATION_TITLE $VERSION\nPlease upgrade."

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml3
POL_Call POL_Install_wininet
POL_Call POL_Install_ie8

################
#      GPU     #
################
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
# Useful for Nvidia GPUs
# POL_Call POL_Install_physx


####################
# DOWNLOAD GAME    #
####################

#Select which version
POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
[ "$APP_ANSWER" = "North America" ] && REGION="na"
[ "$APP_ANSWER" = "Europe" ] && REGION="eu"
[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
# Download
cd "$WINEPREFIX/drive_c"
POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, then un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done.')" "$TITLE"

#Installation
POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts

POL_Shortcut "WOWpLauncher.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close

exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Thursday 9 January 2020 at 19:57
Dadu042

Information

This update has been approved by the team.

Differences

@@ -13,6 +13,8 @@
 # [Dadu042] (2020-01-09) (not tested)
 #   Wine 1.17.12 -> 4.21
 #   Add GPU setting.
+# [Dadu042] (2020-01-09 19:55)
+#   Wine 4.21 -> 4.0.3 (more economical because this script is not tested).
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"

New source code

#!/bin/bash
# Date : (2013-03-30)
# Last revision : (2013-03-30)
# Distribution used to test : Ubuntu-gnome 64
# Author : Massawi33
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.2.2


# CHANGELOG:
# [max252] (2014)
#   Initial write ?.
# [Dadu042] (2020-01-09) (not tested)
#   Wine 1.17.12 -> 4.21
#   Add GPU setting.
# [Dadu042] (2020-01-09 19:55)
#   Wine 4.21 -> 4.0.3 (more economical because this script is not tested).

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

TITLE="WorldOfWarplanes"
PREFIX="WOWarplanes"
WORKING_WINE_VERSION="4.21"
PUBLISHER="BigWorld Technology"
GAME_URL="http://worldofwarplanes.com/"
AUTHOR="Massawi33"
GAME_VMS="128"

# Setup
POL_SetupWindow_Init
POL_SetupWindow_SetID 1983
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE will not work with $APPLICATION_TITLE $VERSION\nPlease upgrade."

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml3
POL_Call POL_Install_wininet
POL_Call POL_Install_ie8

################
#      GPU     #
################
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
# Useful for Nvidia GPUs
# POL_Call POL_Install_physx


####################
# DOWNLOAD GAME    #
####################

#Select which version
POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
[ "$APP_ANSWER" = "North America" ] && REGION="na"
[ "$APP_ANSWER" = "Europe" ] && REGION="eu"
[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
# Download
cd "$WINEPREFIX/drive_c"
POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, then un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done.')" "$TITLE"

#Installation
POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts

POL_Shortcut "WOWpLauncher.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close

exit 0

Replies

Dadu042 Thursday 9 January 2020 at 19:54
Dadu042

Warning

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

Differences

@@ -6,12 +6,20 @@
 # Licence : GPLv3
 # PlayOnLinux:  playonlinux-4.2.2
 
+
+# CHANGELOG:
+# [max252] (2014)
+#   Initial write ?.
+# [Dadu042] (2020-01-09) (not tested)
+#   Wine 1.17.12 -> 4.21
+#   Add GPU setting.
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="WorldOfWarplanes"
 PREFIX="WOWarplanes"
-WORKING_WINE_VERSION="1.7.12"
+WORKING_WINE_VERSION="4.21"
 PUBLISHER="BigWorld Technology"
 GAME_URL="http://worldofwarplanes.com/"
 AUTHOR="Massawi33"
@@ -24,6 +32,8 @@
 
 POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE will not work with $APPLICATION_TITLE $VERSION\nPlease upgrade."
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
@@ -38,8 +48,23 @@
 POL_Call POL_Install_wininet
 POL_Call POL_Install_ie8
 
+################
+#      GPU     #
+################
+ 
 # Asking about memory size of graphic card
-POL_SetupWindow_VMS "$GAME_VMS"
+POL_SetupWindow_VMS $GAME_VMS
+
+# Set Graphic Card information keys for wine
+POL_Wine_SetVideoDriver
+ 
+# Useful for Nvidia GPUs
+# POL_Call POL_Install_physx
+
+
+####################
+# DOWNLOAD GAME    #
+####################
 
 #Select which version
 POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
@@ -50,7 +75,7 @@
 cd "$WINEPREFIX/drive_c"
 POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"
 
-POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, Then Un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"
+POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, then un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done.')" "$TITLE"
 
 #Installation
 POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
@@ -58,8 +83,8 @@
 
 # Create Shortcuts
 
-POL_Shortcut "WOWpLauncher.exe" "$TITLE"
+POL_Shortcut "WOWpLauncher.exe" "$TITLE" "" "" "Game;"
 
 POL_SetupWindow_Close
 
-exit 0
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2013-03-30)
# Last revision : (2013-03-30)
# Distribution used to test : Ubuntu-gnome 64
# Author : Massawi33
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.2.2


# CHANGELOG:
# [max252] (2014)
#   Initial write ?.
# [Dadu042] (2020-01-09) (not tested)
#   Wine 1.17.12 -> 4.21
#   Add GPU setting.

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

TITLE="WorldOfWarplanes"
PREFIX="WOWarplanes"
WORKING_WINE_VERSION="4.21"
PUBLISHER="BigWorld Technology"
GAME_URL="http://worldofwarplanes.com/"
AUTHOR="Massawi33"
GAME_VMS="128"

# Setup
POL_SetupWindow_Init
POL_SetupWindow_SetID 1983
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$TITLE will not work with $APPLICATION_TITLE $VERSION\nPlease upgrade."

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml3
POL_Call POL_Install_wininet
POL_Call POL_Install_ie8

################
#      GPU     #
################
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
# Useful for Nvidia GPUs
# POL_Call POL_Install_physx


####################
# DOWNLOAD GAME    #
####################

#Select which version
POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
[ "$APP_ANSWER" = "North America" ] && REGION="na"
[ "$APP_ANSWER" = "Europe" ] && REGION="eu"
[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
# Download
cd "$WINEPREFIX/drive_c"
POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, then un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done.')" "$TITLE"

#Installation
POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts

POL_Shortcut "WOWpLauncher.exe" "$TITLE" "" "" "Game;"

POL_SetupWindow_Close

exit 0

Replies

Deleted account Wednesday 16 December 2015 at 14:18
Deleted account Anonymous

Message

Script isn't working because there are some updates which had done for the script of WorldOfWarships which are missing here...

Compare with https://www.playonlinux.com/en/app-2571-World_Of_Warships.html - Thread from mimi89999 at Saturday 7 November 2015 at 21:47.

Replies

FuzzyToothpaste Tuesday 16 September 2014 at 1:49
FuzzyToothpaste Anonymous

Warning

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

Differences

@@ -9,7 +9,7 @@
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
 
-TITLE="WorldOfWarplanes"
+TITLE="WorldofWarplanes"
 PREFIX="WOWarplanes"
 WORKING_WINE_VERSION="1.7.12"
 PUBLISHER="BigWorld Technology"

New source code

#!/bin/bash
# Date : (2013-03-30)
# Last revision : (2013-03-30)
# Distribution used to test : Ubuntu-gnome 64
# Author : Massawi33
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.2.2

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

TITLE="WorldofWarplanes"
PREFIX="WOWarplanes"
WORKING_WINE_VERSION="1.7.12"
PUBLISHER="BigWorld Technology"
GAME_URL="http://worldofwarplanes.com/"
AUTHOR="Massawi33"
GAME_VMS="128"

# Setup
POL_SetupWindow_Init
POL_SetupWindow_SetID 1983
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml3
POL_Call POL_Install_wininet
POL_Call POL_Install_ie8

# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"

#Select which version
POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
[ "$APP_ANSWER" = "North America" ] && REGION="na"
[ "$APP_ANSWER" = "Europe" ] && REGION="eu"
[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
# Download
cd "$WINEPREFIX/drive_c"
POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, Then Un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"

#Installation
POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts

POL_Shortcut "WOWpLauncher.exe" "$TITLE"

POL_SetupWindow_Close

exit 0

Replies

der Papst Tuesday 2 September 2014 at 14:48
der Papst Anonymous

Message

The patch 1.5 (i think so, didn't test it before this version) broke the compatiblity with wine.

Please see this thread for details: http://www.playonlinux.com/en/topic-12340-World_of_Warplanes_15.html

Replies

Anonymous
Tuesday 2 September 2014 at 15:00
(It's the same problem like cyberalex4life encounters, maybe my thread give you more details to fix it)
cyberalex4life Thursday 28 August 2014 at 21:05
cyberalex4life Anonymous

Message

I tried using World Of Tanks installation instead of of the new world of warplanes. The game doesn't run, but the bug about the mouse is not present anymore.

Replies

Anonymous
Friday 29 August 2014 at 12:29
ok, I did a new fresh install of WOWPLANES today on Ubuntu Trusty x86_amd64 and used wine 1.7.25. When clicking on play after downloading and installing updates, game doesn't start by default. If I set Mouse warp override to enable the game will start but can't start in debugging mode. After getting in the game when trying to enter training, or battle, the game crashes. Final error is this:
Anonymous
Friday 29 August 2014 at 12:29
wine: Unhandled page fault on read access to 0x00000008 at address 0xc6b6df (thread 0033), starting debugger...
Anonymous
Friday 29 August 2014 at 12:30
https://www.dropbox.com/s/b9628c62vlsk8h0/WOWP-error.jpg?dl=0
Yuudai Wednesday 2 July 2014 at 15:11
Yuudai Anonymous

Message

No Mouse detected

WOrld of Tanks Okay. All Gemes Okay But WOrld of warplanes nstall and by Play No Mouse detected.

Replies

Anonymous
Tuesday 15 July 2014 at 9:28
Same issue here
Anonymous
Tuesday 22 July 2014 at 16:50
Toujours le même pb. Pas de solution trouvée...
Anonymous
Tuesday 22 July 2014 at 16:55
Can you try with differents wine version?
Anonymous
Wednesday 30 July 2014 at 8:59
tried latest Wine, not working
Anonymous
Wednesday 30 July 2014 at 9:36
Would be nice to know if this works for some other people.... My MBP is 2012 mid 15" (Yosemite 10.10)
Anonymous
Tuesday 12 August 2014 at 9:37
I tried serval version but always "no mouse detected..."
max252 Wednesday 11 June 2014 at 11:36
max252 Anonymous

Warning

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

Differences

@@ -42,9 +42,10 @@
 POL_SetupWindow_VMS "$GAME_VMS"
 
 #Select which version
-POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Tanks would you like to install?')" "$TITLE" "North America~Europe" "~"
+POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
 [ "$APP_ANSWER" = "North America" ] && REGION="na"
 [ "$APP_ANSWER" = "Europe" ] && REGION="eu"
+[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
 # Download
 cd "$WINEPREFIX/drive_c"
 POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

New source code

#!/bin/bash
# Date : (2013-03-30)
# Last revision : (2013-03-30)
# Distribution used to test : Ubuntu-gnome 64
# Author : Massawi33
# Licence : GPLv3
# PlayOnLinux:  playonlinux-4.2.2

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

TITLE="WorldOfWarplanes"
PREFIX="WOWarplanes"
WORKING_WINE_VERSION="1.7.12"
PUBLISHER="BigWorld Technology"
GAME_URL="http://worldofwarplanes.com/"
AUTHOR="Massawi33"
GAME_VMS="128"

# Setup
POL_SetupWindow_Init
POL_SetupWindow_SetID 1983
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

# Components
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_d3dx9_36
POL_Call POL_Install_d3dcompiler_43
POL_Call POL_Install_dxdiag
POL_Call POL_Install_dxfullsetup
POL_Call POL_Install_corefonts
POL_Call POL_Install_msxml3
POL_Call POL_Install_wininet
POL_Call POL_Install_ie8

# Asking about memory size of graphic card
POL_SetupWindow_VMS "$GAME_VMS"

#Select which version
POL_SetupWindow_menu "$(eval_gettext 'Which region version of World of Warplanes would you like to install?')" "$TITLE" "North America~Europe~Russia" "~"
[ "$APP_ANSWER" = "North America" ] && REGION="na"
[ "$APP_ANSWER" = "Europe" ] && REGION="eu"
[ "$APP_ANSWER" = "Russia" ] && REGION="ru"
# Download
cd "$WINEPREFIX/drive_c"
POL_Download "http://dl.wargaming.net/wowp/$REGION/files/WoWP_internet_install_$REGION.exe"

POL_SetupWindow_message "$(eval_gettext 'Attention:After installation is complete, the patcher will load. After, go to the top right of the patcher and click the wrench, Then Un-check the box for "Allow Torrent", if this is not done the patcher will crash after 1 minute. When finished with this, please close the patcher before logging in or finish updating to complete the installation. After this, you can run "$TITLE" when setup is done')" "$TITLE"

#Installation
POL_Wine start /unix "$WINEPREFIX/drive_c/WoWP_internet_install_$REGION.exe"
POL_Wine_WaitExit "$TITLE"

# Create Shortcuts

POL_Shortcut "WOWpLauncher.exe" "$TITLE"

POL_SetupWindow_Close

exit 0

Replies

Anonymous
Sunday 13 July 2014 at 9:24
I tried the patch, but same problem : no mouse detected.
Anonymous
Tuesday 15 July 2014 at 7:11
How do i try this new source code
Anonymous
Wednesday 30 July 2014 at 9:20
"No Mouse Deteted" ... tried different Windows versions too (7,8) and with this patch. Any help ????