Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

09-08-2012 , 04:08 PM
hi all, please help
I have the version fpdb-0.30.5
the problem is not on the table shows the HUD.
imported database, the default settings, HUD table 3x3
turn on the Auto Import, it works, hands to read, but on the table is clear.
What settings should I look?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-09-2012 , 04:10 PM
Hi guys,

I had a problem when Pokerstars updated their handhistory format and the problem did not go away for some time. My old laptop died and a got a new one but the same problem with fpdb still persisted. The problem was that even though fdpb was taking on hands it was not showing them via the HUD.

Gimick and Sorrow gave me much help. One of them pointed me to HUD_config
and told me that a particular thing should read such and such. Well, I corrected that but it would show the HUD stats initially over Pokerstars table graphics but any opening and shutting and they went away.

The problem was not proving easy to solve. Much time passed. I decided to do without fpdb. Not the best answer but it was so frustrating.

Today, I gave it another go after some time. In HUD_config there was a 'string' that read stat_name="car_0" as an educated guess I changed it to read stat_name="car0". Bingo. Problem solved.

Many thanks to sorrow and gimmick and anyone else who may have given me help.

Last edited by Al Mirpuri; 09-09-2012 at 04:16 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-09-2012 , 04:49 PM
Hello. I've been using FPDB for a couple of days now, and I have a couple of questions/suggestions. I'll list them as I have thought of them, and probably there are things easy to implement but I haven't found anything in the FAQ and I am not much confident to play with the source code. None of them is a life or death situation, of course, but probably it can help improve the software


HUD:
1) Is there anyway to change hud default text font? I'd like to make the stats look [/b]bold[b], so it's easier to find.

2) When I get many hands of a player, the column with the number of hands get too wide. Is there anyway it could be colapsed, like writing 1204 -> 1.2k?

3) The stats, when they are 100.0, also widen the column [this is, I guess, the least important of all, because all 100.0 will soon lower]. Maybe it could be set to be an int when it's 100, or do 100.0-> 99.9?

4) Can somehow the columns be combined? (I understand this one as the most complicated one, since the xml configuration doesn't seem to be able to do that easily)

5) Is there anyway to change the popup configuration? Adding more columns and such?
Software:

1) Maybe it would be nice to have a button to directly set the dates for "Today" in the graph/stats tab.

2) Is there anyway to export the stats report as a CSV file or anything like that? I've searched but I found none.

Of course, these are just suggestions, and I understand I have no right to ask for anything, mostly since I am not a developer, but at least it might help you to make slight changes that can be helpful.

Thanks very much! I think you did a pretty great work with this software

EDIT: One more thing I forgot. I use FPDB with wine, so probably it's a wine issue. In that case, disregard this. But:

I have set "Pop-up table when user action is required" in Multitable options. When I have that, and the table pops up, it gets drawn on top of the HUD, so the HUD gets invisible until I actually clic on the table. Once I clic on the table, the HUD goes up again, and is drawn on top of the table as it should.

Last edited by Laimo; 09-09-2012 at 05:01 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-09-2012 , 07:19 PM
I don't know how to edit the previous post now, so I'll just post again and hope it merges. In the EDIT I meant I use PokerStars with wine
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-10-2012 , 03:51 AM
2) When I get many hands of a player, the column with the number of hands get too wide. Is there anyway it could be colapsed, like writing 1204 -> 1.2k?


Yes. Actually that works with more than 10k hands, but you can change that:
File: Stats.py, search "def n"


3) The stats, when they are 100.0, also widen the column [this is, I guess, the least important of all, because all 100.0 will soon lower]. Maybe it could be set to be an int when it's 100, or do 100.0-> 99.9?


Add the suffix "_0" to the name of the stat (edit: in Hud_config.xml)

4) Can somehow the columns be combined? (I understand this one as the most complicated one, since the xml configuration doesn't seem to be able to do that easily)

Nope, it's a grid.

5) Is there anyway to change the popup configuration? Adding more columns and such?

Yes. Hud_config.xml, search pu_name="default"
Too bad there's only one popup, i'd like to have one for each stats' family.


EDIT: One more thing I forgot. I use FPDB with wine, so probably it's a wine issue. In that case, disregard this. But:

I have set "Pop-up table when user action is required" in Multitable options. When I have that, and the table pops up, it gets drawn on top of the HUD, so the HUD gets invisible until I actually clic on the table. Once I clic on the table, the HUD goes up again, and is drawn on top of the table as it should.


I use fpdb with wine too and don't have that issue, maybe the window/desktop manager you are using is the problem.

I hope that helps, sorry for my bad english and the poor quoting.

Last edited by Arsil; 09-10-2012 at 04:13 AM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-10-2012 , 04:05 AM
I did a quick search and found nothing, so...

"4 bet range" stat

File: Stats.py, right after "def four_B..."

Code:
def fbr(stat_dict, player):
    stat_descriptions["fbr"] = _("4 bet range") + " (fbr)"
    stat = 0.0
    try: 
        stat = float(stat_dict[player]['fb_0'])/float(stat_dict[player]['fb_opp_0'])
        stat *= float(stat_dict[player]['pfr'])/float(stat_dict[player]['n'])
        return (stat,
                '%3.1f'         % (100.0*stat),
                'fbr=%3.1f%%'    % (100.0*stat),
                'fbr=%3.1f%%' % (100.0*stat),
                '(pfr*four_B)',
                _('4 bet range'))
    except:
        return (stat,
                'NA',
                'fbr=NA',
                'fbr=NA',
                '(pfr*four_B)',
                _('4 bet range'))
I tested it with 0.30.4 and seems to work fine.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-10-2012 , 03:42 PM
Quote:
Originally Posted by Arsil
2) When I get many hands of a player, the column with the number of hands get too wide. Is there anyway it could be colapsed, like writing 1204 -> 1.2k?


Yes. Actually that works with more than 10k hands, but you can change that:
File: Stats.py, search "def n"


3) The stats, when they are 100.0, also widen the column [this is, I guess, the least important of all, because all 100.0 will soon lower]. Maybe it could be set to be an int when it's 100, or do 100.0-> 99.9?


Add the suffix "_0" to the name of the stat (edit: in Hud_config.xml)

4) Can somehow the columns be combined? (I understand this one as the most complicated one, since the xml configuration doesn't seem to be able to do that easily)

Nope, it's a grid.

5) Is there anyway to change the popup configuration? Adding more columns and such?

Yes. Hud_config.xml, search pu_name="default"
Too bad there's only one popup, i'd like to have one for each stats' family.


EDIT: One more thing I forgot. I use FPDB with wine, so probably it's a wine issue. In that case, disregard this. But:

I have set "Pop-up table when user action is required" in Multitable options. When I have that, and the table pops up, it gets drawn on top of the HUD, so the HUD gets invisible until I actually clic on the table. Once I clic on the table, the HUD goes up again, and is drawn on top of the table as it should.


I use fpdb with wine too and don't have that issue, maybe the window/desktop manager you are using is the problem.

I hope that helps, sorry for my bad english and the poor quoting.
Thank you very much for the help, I'll soon try these things.

POPUP related:, I haven't played much with it yet, but I have two things to mention.

ONE:
Spoiler:
About being only one popup, I don't know if this is the idea of the tag in the stat, but one of my stats (VPIP) looks like this:

Code:
<stat click="tog_decorate" col="0" hudcolor="#00FF00" popup="default" row="1" stat_hicolor="#FF0000" stat_hith="31" stat_locolor="#0000FF" stat_loth="17" stat_name="vpip" tip="tip1"/>
I believe that changing the value of that popup="default" to popup="preflop" and writing, in the <popup_windows> a

Code:
 <pu pu_name="preflop">
with the stats you want, you'll be able to set different popups for each stat. I haven't tried this yet [I am willing to do it soon] but I think that's the idea of it.


TWO:
Spoiler:


I am afraid I wasn't clear enough on my question. By changing the pop-up I meant being able to write it as a table also, like the HUD, instead of a single column, setting color ranges, etc.



General HUD related: How can I import statistics to the HUD? Suppose I want the 3rd barrel statistics, that I believe are already in the FPDB. How can I put that on the HUD?


I hope what I pointed out here can help some of you, and thanks in advance for all the help you can give me!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-10-2012 , 07:17 PM
Quote:
Originally Posted by Al Mirpuri
Today, I gave it another go after some time. In HUD_config there was a 'string' that read stat_name="car_0" as an educated guess I changed it to read stat_name="car0". Bingo. Problem solved.
This line has to be changed for each individual game you are playing thus once for draw, 7 stud, omaha, holdem etc.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-11-2012 , 08:54 AM
Quote:
Originally Posted by Laimo
I believe that changing the value of that popup="default" to popup="preflop" and writing ...
I tried, but it's not implemented yet.

Quote:
By changing the pop-up I meant being able to write it as a table also, like the HUD, instead of a single column, setting color ranges, etc.
It's actually not possibile, the popup has only that fixed structure.


Quote:
How can I import statistics to the HUD? Suppose I want the 3rd barrel statistics, that I believe are already in the FPDB. How can I put that on the HUD?
Edit the file HUD_config.xml.
You can use the "cb3" stat but that means a cbet on the river,
not a third barrel (stat not avaiable in the current code).

For a complete list of stats you can use the "Hud preferences"
option on the "Main" menu. I recommend to use that interface
only to see the complete list of stats avaiable and don't save it
(because it messes the layout of the HUD in my experience).
To change the HUD edit the configuration's file.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-12-2012 , 08:59 AM
what to write in environment variables ?
WinXP fpdb 0.30.5
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-14-2012 , 02:57 AM
Can someone suggest me a SQL query to get a handid of a hand involving a particular
player? Since "Ring Player Stats" doesn't show all stats, I need to use the HUD "offline"
to get them all. Thanks in advance.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-14-2012 , 08:34 AM
Quote:
Originally Posted by Arsil
Can someone suggest me a SQL query to get a handid of a hand involving a particular
player? Since "Ring Player Stats" doesn't show all stats, I need to use the HUD "offline"
to get them all. Thanks in advance.
Here's the SQL if you want all the hand ids of a particular player:

Code:
SELECT H.id
FROM Hands H
INNER JOIN HandsPlayers HP ON (H.id = HP.handId)
INNER JOIN Players P ON (P.id = HP.playerId)
WHERE P.name = '<name of player>'
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-14-2012 , 02:50 PM
Hello,
I just installed the fpdb and it worked fine. Now I cant change HUD Colors, I dont know what I have to do. Is There anyone who could help me?
The HUD should be look like this:

Name (yellow) Hands (red) VPIP (blue) PFR (green)
3bet (blue) fold to 3-bet (yellow) Contibet (blue) Fold to Contibet (yellow)

Can anyone explain exactly to me how to do this !

thanks a lot
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-15-2012 , 03:26 AM
On your configuration file, you can set for every stat a 6 digit
hexadecimal code of a color with hudcolor="#98FFB0"

You can also change the color if the stat is higher and/or lower
of a fixed value. Example:
Code:
<stat click="tog_decorate" col="1" popup="default" row="0" stat_hicolor="#F05000" stat_hith="30" stat_locolor="#408000" stat_loth="14" stat_name="vpip_0" tip="tip1"/>
--

I wanna share this with you.
I wanted to use the HUD "offline" (not while playing) to see all stats
of a player. Using the replayer of the poker client is a bit boring,
and the WIKI says this can be done without relying on it (but
doesn't explain how). I tried to figure it out by myself and I guessed
it all depends on the window name, so I wrote a little tcl/tk script to
create an empty window with a title that you can specify in the
command line and use that window as a "hook" for the HUD.

1)
So, first I need a handid of a hand involving that player and the
name of the table were that hand was played, so I use this SQL query
(thanks to ChazDazzle) with a database browser (like SQLite database browser)

Quote:
SELECT H.id, H.tableName
FROM Hands H
INNER JOIN HandsPlayers HP ON (H.id = HP.handId)
INNER JOIN Players P ON (P.id = HP.playerId)
WHERE P.name = 'NICKNAME'
let's say I get "1 FakeTableName" as output.

2)
Now I start this script, named window.tcl, with "wish window.tcl FakeTableName"

Code:
# SYNTAX: wish window.tcl

wm title . [lindex $argv 0]
wm geometry . +100+100
wm minsize . 640 480
wm resizable . 1 1
3)
then I start the HUD as a standalone program wth

Code:
python HUD_main.pyw -x -d ~/.fpdb/database/fpdb.db3 -c ~/.fpdb/HUD_config.xml
and, on the same prompt where I executed this last command, I wrote
the handid ("1" on the example above) to get the HUD on the window.

--

But then I wondered...
if we name the "fpdb replayer window" with the table's name were the
hand we want to see was played, can't' we easily have the HUD on the
replayer itself? Maybe not with the stats we had back then, but who cares.

Now, this with a way to mark hands and filter them to only show marked
hands on the "Hand Viewer" would make me very happy.

EDIT: oh, even a button/checkbox to unselect all hands on the Hand Viewer tab
would be welcome, it's a pain in the "Ace" unselect them one by one ^^

I know that was poorly explained, I'm sorry.

Last edited by Arsil; 09-15-2012 at 03:48 AM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-15-2012 , 07:21 AM
appreciate the hard work guys, this thing is awesome!

any ETA for HUD on ipoker speed poker support ?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-15-2012 , 08:11 AM
Quote:
Originally Posted by primski
appreciate the hard work guys, this thing is awesome!

any ETA for HUD on ipoker speed poker support ?
I can get started on one piece of that puzzle. Can you send a few sample hh files to support@pokeit.co?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-15-2012 , 12:30 PM
Quote:
Originally Posted by ChazDazzle
I can get started on one piece of that puzzle. Can you send a few sample hh files to support@pokeit.co?
done!

awesome, thanks a lot !
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-15-2012 , 05:51 PM
Quote:
Originally Posted by primski
done!

awesome, thanks a lot !
Thanks. These hands do import. I'll ping gimick and see if he has the bandwidth to get started on HUD support.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 01:09 AM
Quote:
Originally Posted by Binturong
How do I get tournament results for Double up tournaments on the merge network correctly? I have added a screenshot when I try to import tournament results it seems to pause at this point.

That looks like a crash. Can you send Chaz or myself one of the offending hand histories please?

Quote:
Originally Posted by blizz
Unfortunately, HUD does not work on some of the tables at Party Poker.
Does not work on single tables (non-turbo or standard), $ 1, $ 3 and so on, the format of these tables are: Table 123456
Works only on single tables (Turbo, hyper turbo), the format of these tables to Table #123456
The multiple tables (MTT) are not checked, but the problem is probably similar.

regards
Thanks for this, i've adjusted the lookup function, hopefully this will function in the next version.

Quote:
Originally Posted by firippusan
v0.30.4 doesn't display graphs anymore, anyone experienced something similar?
It still works with my previous install of 0.29.905
You almost certainly need to delete your old config file. 0.29->0.30 config files aren't compatible.

Quote:
Originally Posted by Bes
how I can remove all the old bases and make new base? there does not be not nothing to make it is written: "the incorrect version of a DB or there are no tables"
And how remove site ? written: "Warning: Unable to finde site..."
You almost certainly need to delete your old config file. 0.29->0.30 config files aren't compatible.



Quote:
Originally Posted by Laimo
Hello. I've been using FPDB for a couple of days now, and I have a couple of questions/suggestions. I'll list them as I have thought of them, and probably there are things easy to implement but I haven't found anything in the FAQ and I am not much confident to play with the source code. None of them is a life or death situation, of course, but probably it can help improve the software


HUD:
1) Is there anyway to change hud default text font? I'd like to make the stats look [/b]bold[b], so it's easier to find.
Search for "font" in the config file. It is set to Sans at the moment.
Quote:
Originally Posted by Laimo
Software:

1) Maybe it would be nice to have a button to directly set the dates for "Today" in the graph/stats tab.
I've added an issue to Mantis re: that.
Quote:
Originally Posted by Laimo
2) Is there anyway to export the stats report as a CSV file or anything like that? I've searched but I found none.
Not yet. That would be a decent starter project for someone.

Quote:
Originally Posted by Arsil
I did a quick search and found nothing, so...
Firstly, thanks very much for answering some of these questions.
Quote:
Originally Posted by Arsil
"4 bet range" stat

File: Stats.py, right after "def four_B..."

Code:
def fbr(stat_dict, player):
    stat_descriptions["fbr"] = _("4 bet range") + " (fbr)"
    stat = 0.0
    try: 
        stat = float(stat_dict[player]['fb_0'])/float(stat_dict[player]['fb_opp_0'])
        stat *= float(stat_dict[player]['pfr'])/float(stat_dict[player]['n'])
        return (stat,
                '%3.1f'         % (100.0*stat),
                'fbr=%3.1f%%'    % (100.0*stat),
                'fbr=%3.1f%%' % (100.0*stat),
                '(pfr*four_B)',
                _('4 bet range'))
    except:
        return (stat,
                'NA',
                'fbr=NA',
                'fbr=NA',
                '(pfr*four_B)',
                _('4 bet range'))
I tested it with 0.30.4 and seems to work fine.
Looks good. Added.

Quote:
Originally Posted by Arsil
I wanna share this with you.
I wanted to use the HUD "offline" (not while playing) to see all stats
of a player. Using the replayer of the poker client is a bit boring,
and the WIKI says this can be done without relying on it (but
doesn't explain how). I tried to figure it out by myself and I guessed
it all depends on the window name, so I wrote a little tcl/tk script to
create an empty window with a title that you can specify in the
command line and use that window as a "hook" for the HUD.

1)
So, first I need a handid of a hand involving that player and the
name of the table were that hand was played, so I use this SQL query
(thanks to ChazDazzle) with a database browser (like SQLite database browser)



let's say I get "1 FakeTableName" as output.

2)
Now I start this script, named window.tcl, with "wish window.tcl FakeTableName"

Code:
# SYNTAX: wish window.tcl

wm title . [lindex $argv 0]
wm geometry . +100+100
wm minsize . 640 480
wm resizable . 1 1
3)
then I start the HUD as a standalone program wth

Code:
python HUD_main.pyw -x -d ~/.fpdb/database/fpdb.db3 -c ~/.fpdb/HUD_config.xml
and, on the same prompt where I executed this last command, I wrote
the handid ("1" on the example above) to get the HUD on the window.

--

But then I wondered...
if we name the "fpdb replayer window" with the table's name were the
hand we want to see was played, can't' we easily have the HUD on the
replayer itself? Maybe not with the stats we had back then, but who cares.
This exact feature has been discussed a few times. I'm not 100% sure where it got to - there has been a lot of re-work in the HUD code by gimick for lots of reasons, but one was to allow aux modules to be started from things other than HUD_main. This is a pre-requisite to a decent HUD configurator.
Quote:
Originally Posted by Arsil
Now, this with a way to mark hands and filter them to only show marked
hands on the "Hand Viewer" would make me very happy.
I've added that to Mantis too
Quote:
Originally Posted by Arsil
EDIT: oh, even a button/checkbox to unselect all hands on the Hand Viewer tab
would be welcome, it's a pain in the "Ace" unselect them one by one ^^

I know that was poorly explained, I'm sorry.
Yeah - that interface could use a lot of work.

Quote:
Originally Posted by ZeroFive
hi all, please help
I have the version fpdb-0.30.5
the problem is not on the table shows the HUD.
imported database, the default settings, HUD table 3x3
turn on the Auto Import, it works, hands to read, but on the table is clear.
What settings should I look?
What site? what game type?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 03:44 AM
thanks for the solution to change the colour of stats.

I have just another problem. For Cashgames the programm shows me the winnings but for Tourney and SNG the games are be tracked but if I am in the money the programm doesnt show the winnings and no ROI.
Could you help me?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 05:34 AM
Hello,

I want to move fpdb.db3 to another diskdrive, but (how) will fpdb be still able to find it if I do that?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 05:50 AM
A bit less useful, anyway here is the 3 bet call frequency
(not sure about stat's naming conventions)

Code:
def ctb(stat_dict, player):
    stat_descriptions["ctb"] = _("% call 3 bet") + " (ctb)"
    stat = 0.0
    try: 
        stat = (float(stat_dict[player]['f3b_opp_0'])-float(stat_dict[player]['f3b_0'])-float(stat_dict[player]['fb_0']))/float(stat_dict[player]['f3b_opp_0'])
        return (stat,
                '%3.1f'         % (100.0*stat),
                'ctb=%3.1f%%'    % (100.0*stat),
                'ctb=%3.1f%%' % (100.0*stat),
                '(%d/%d)'       % (float(stat_dict[player]['f3b_opp_0'])-stat_dict[player]['fb_0']-stat_dict[player]['f3b_0'], stat_dict[player]['fb_opp_0']),
                _('% call 3 bet'))
    except:
        return (stat,
                'NA',
                'ctb=NA',
                'ctb=NA',
                '(0/0)',
                _('% call 3 bet'))
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 10:21 AM
Quote:
Originally Posted by TheGrinder23
thanks for the solution to change the colour of stats.

I have just another problem. For Cashgames the programm shows me the winnings but for Tourney and SNG the games are be tracked but if I am in the money the programm doesnt show the winnings and no ROI.
Could you help me?
Have you imported the results file? (Which site?)

Quote:
Originally Posted by p0kerspeler
Hello,

I want to move fpdb.db3 to another diskdrive, but (how) will fpdb be still able to find it if I do that?
You can specify command line arguments to fpdb to make it look for alternate databases and config files

-d is the option for db from memory.

Quote:
Originally Posted by Arsil
A bit less useful, anyway here is the 3 bet call frequency
(not sure about stat's naming conventions)

Code:
def ctb(stat_dict, player):
    stat_descriptions["ctb"] = _("% call 3 bet") + " (ctb)"
    stat = 0.0
    try: 
        stat = (float(stat_dict[player]['f3b_opp_0'])-float(stat_dict[player]['f3b_0'])-float(stat_dict[player]['fb_0']))/float(stat_dict[player]['f3b_opp_0'])
        return (stat,
                '%3.1f'         % (100.0*stat),
                'ctb=%3.1f%%'    % (100.0*stat),
                'ctb=%3.1f%%' % (100.0*stat),
                '(%d/%d)'       % (float(stat_dict[player]['f3b_opp_0'])-stat_dict[player]['fb_0']-stat_dict[player]['f3b_0'], stat_dict[player]['fb_opp_0']),
                _('% call 3 bet'))
    except:
        return (stat,
                'NA',
                'ctb=NA',
                'ctb=NA',
                '(0/0)',
                _('% call 3 bet'))
Nice, thanks. I've added this to my master branch, i'm getting a weird merge conflict trying to backport atm.

Sorrow.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-16-2012 , 11:51 AM
I am not sure. Is this the file which I found whis Control+R "import of tourney results" Then it shows me the file which my playersname. That works, i can see all tourneys I have played, but it shows me never the winnings. My graph is only going down.
When its not where I am found this file? I play on pokerstars.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
09-17-2012 , 06:31 AM
Quote:
Originally Posted by TheGrinder23
I am not sure. Is this the file which I found whis Control+R "import of tourney results" Then it shows me the file which my playersname. That works, i can see all tourneys I have played, but it shows me never the winnings. My graph is only going down.
When its not where I am found this file? I play on pokerstars.
PokerStars has another directory that it stores tournament results in:

C:/Program Files/PokerStars/TournSummary/username/

You need to import those files to see results.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m