Poker Stars

Informations

Creator Message
lahtis

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 76560
Wine: System

Feedbacks

Description

Online poker cardroom.

Wikipedia. AppDB.winehq.org

Screenshots

Miniature

Source code

#!/bin/bash
# Date : (2013-02-22)
# Last revision : see changelog
# Author : lahtis
# PlayOnLinux: 4.2.12
#
# CHANGELOG
# [lahtis] (2013-02-22)
#   Initial writting.
# [lahtis] (2015-06-08)
#   Updates
# [Dadu042] (2019-06-28)
#   Remove the required Wine version (currently 1.7.47) simplest for future POL's end users.
#   Add LOCAL install option (because the file is hard to download today).
#   Standardize POL_System_Tmp

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Poker Stars"
EDITOR="PokerStars"
EDITOR_URL="http://www.pokerstars.eu/"
PREFIX="PokerStarsEU"
 
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_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
 
# Create tmp directory for downloaded files
POL_System_TmpCreate "$PREFIX"
 
# Moving tmp directory
cd "$POL_System_TmpDir"

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" 
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        # Download file
        POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe"
 
        # Select setup file
        SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe"
 
        # Install file && check install errors
        POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')"
        POL_Wine_WaitExit "$TITLE"
fi

 
# Create shortcut
POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;"
 
# Wait is patch is installed
POL_Wine_WaitExit "$TITLE"

# Delete tmp directory
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Saturday 29 June 2019 at 20:20
Dadu042

Information

This update has been approved by the team.

Message

Details in the script : area CHANGELOG.
 

Software version I used: 'PokerStars 7 (Version : 27382). Server version: 1106D' (info from the About of the help menu in the software)

Differences

@@ -1,49 +1,70 @@
 #!/bin/bash
 # Date : (2013-02-22)
-# Last revision : (2015-06-08 00:16)
+# Last revision : see changelog
 # Author : lahtis
-# PlayOnLinux: 4.1.1
+# PlayOnLinux: 4.2.12
+#
+# CHANGELOG
+# [lahtis] (2013-02-22)
+#   Initial writting.
+# [lahtis] (2015-06-08)
+#   Updates
+# [Dadu042] (2019-06-28)
+#   Remove the required Wine version (currently 1.7.47) simplest for future POL's end users.
+#   Add LOCAL install option (because the file is hard to download today).
+#   Standardize POL_System_Tmp
 
 [ -z "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Poker Stars"
-WINEVERSION="1.7.47"
 EDITOR="PokerStars"
 EDITOR_URL="http://www.pokerstars.eu/"
 PREFIX="PokerStarsEU"
-
+ 
 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_Debug_Init
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX"
-
+ 
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate "$WINEVERSION"
-
+POL_Wine_PrefixCreate
+ 
 # Create tmp directory for downloaded files
-POL_System_TmpCreate "PokerStarsTmp"
-
+POL_System_TmpCreate "$PREFIX"
+ 
 # Moving tmp directory
 cd "$POL_System_TmpDir"
 
-# Download file
-POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe"
-
-# Select setup file
-SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe"
-
-# Install file && check install errors
-POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')"
-
-# Delete tmp directory
-POL_System_TmpDelete
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" 
+ 
+if [ "$INSTALL_METHOD" == "LOCAL" ]; then
+        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"
+        cd "$POL_System_TmpDir"
+else
+        # Download file
+        POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe"
+ 
+        # Select setup file
+        SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe"
+ 
+        # Install file && check install errors
+        POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')"
+        POL_Wine_WaitExit "$TITLE"
+fi
 
+ 
 # Create shortcut
-POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png"
-
+POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;"
+ 
 # Wait is patch is installed
 POL_Wine_WaitExit "$TITLE"
 
+# Delete tmp directory
+POL_System_TmpDelete
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2013-02-22)
# Last revision : see changelog
# Author : lahtis
# PlayOnLinux: 4.2.12
#
# CHANGELOG
# [lahtis] (2013-02-22)
#   Initial writting.
# [lahtis] (2015-06-08)
#   Updates
# [Dadu042] (2019-06-28)
#   Remove the required Wine version (currently 1.7.47) simplest for future POL's end users.
#   Add LOCAL install option (because the file is hard to download today).
#   Standardize POL_System_Tmp

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Poker Stars"
EDITOR="PokerStars"
EDITOR_URL="http://www.pokerstars.eu/"
PREFIX="PokerStarsEU"
 
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_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
 
# Create tmp directory for downloaded files
POL_System_TmpCreate "$PREFIX"
 
# Moving tmp directory
cd "$POL_System_TmpDir"

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" 
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        # Download file
        POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe"
 
        # Select setup file
        SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe"
 
        # Install file && check install errors
        POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')"
        POL_Wine_WaitExit "$TITLE"
fi

 
# Create shortcut
POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;"
 
# Wait is patch is installed
POL_Wine_WaitExit "$TITLE"

# Delete tmp directory
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Edited by Dadu042

Incasinato Saturday 29 June 2019 at 17:43
Incasinato Anonymous

Message

VDRIVES_LINK_MADE=TRUE
MAINWINDOW_WIDTH=1366
MAINWINDOW_HEIGHT=741
MAINWINDOW_X=0
MAINWINDOW_Y=0
PANEL_PERSPECTIVE=layout2|name=PERSPECTIVE_NAME;caption=;state=768;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=14;besth=14;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=Actions;caption=Actions;state=1996;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=200;besth=400;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|dock_size(5,0,0)=16|dock_size(4,0,0)=271|
MANUAL_INSTALL_INCREMENT=6
GOG_REPO=/home/fra/.PlayOnLinux//tmp/
WINE_SYSTEM_ARCH=x86
LAST_TIMESTAMP=1561791453

Replies

Anonymous
Saturday 29 June 2019 at 17:47
The program doesn't run, as i just wrote...
Incasinato Saturday 8 September 2018 at 8:32
Incasinato Anonymous

Message

Hi all. :)

I had to install again the program, beause there was any connection to servers.

Then, now, I can't terminate installation: it's broke on the last sheet, absolutely empty.

I don't know what to do.

 

Francesco

Replies

Anonymous
Saturday 8 September 2018 at 8:42
Hem, Mint 18.2.
Anonymous
Sunday 30 September 2018 at 2:59
Oops...
Anonymous
Sunday 30 September 2018 at 3:01
.... Mint 18.3.
giacecco Friday 8 April 2016 at 12:15
giacecco Anonymous

Message

Almost all good on a Fedora 23 that is up-to-date at the moment of writing. The software also correctly self-updates from the International version to the UK version, where I live, all within the normal installation process. It is important not to let the window manager manage the windows, e.g. in I3WM - as in my case - this can create "loops" when pop-out windows are displayed. 

Replies

raffiwin Monday 14 March 2016 at 15:55
raffiwin Anonymous

Message

Without sucess: "ERROR IN POL_WINE

Replies

Thursday 17 March 2016 at 5:15
testing installer and installer working. Also program working.
lahtis Wednesday 5 August 2015 at 23:18
lahtis

Warning

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

Message

New working version.
 

Differences

@@ -1,6 +1,6 @@
 #!/bin/bash
 # Date : (2013-02-22)
-# Last revision : (2014-10-02 16:16)
+# Last revision : (2015-06-08 00:16)
 # Author : lahtis
 # PlayOnLinux: 4.1.1
 
@@ -8,7 +8,7 @@
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Poker Stars"
-WINEVERSION="1.4.1"
+WINEVERSION="1.7.47"
 EDITOR="PokerStars"
 EDITOR_URL="http://www.pokerstars.eu/"
 PREFIX="PokerStarsEU"

New source code

#!/bin/bash
# Date : (2013-02-22)
# Last revision : (2015-06-08 00:16)
# Author : lahtis
# PlayOnLinux: 4.1.1

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

TITLE="Poker Stars"
WINEVERSION="1.7.47"
EDITOR="PokerStars"
EDITOR_URL="http://www.pokerstars.eu/"
PREFIX="PokerStarsEU"

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_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

# Create tmp directory for downloaded files
POL_System_TmpCreate "PokerStarsTmp"

# Moving tmp directory
cd "$POL_System_TmpDir"

# Download file
POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe"

# Select setup file
SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe"

# Install file && check install errors
POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')"

# Delete tmp directory
POL_System_TmpDelete

# Create shortcut
POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png"

# Wait is patch is installed
POL_Wine_WaitExit "$TITLE"

POL_SetupWindow_Close
exit 0

Replies

Anonymous
Thursday 20 August 2015 at 19:45
the update link isnt working
rooltak Wednesday 5 August 2015 at 22:06
rooltak Anonymous

Message

Doen't run.

Ubuntu 14.04 LTS running in VM Ware Workstation 11.0.7

Replies

Anonymous
Thursday 6 August 2015 at 12:13
had same problem that day, today it runs but only Playmoney-Version
Anonymous
Thursday 6 August 2015 at 12:14
need EU-Version for my location
Anonymous
Thursday 6 August 2015 at 12:56
https://www.pokerstars.eu/de/