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

05-30-2015 , 11:32 PM
thanks for the quick reply!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
05-31-2015 , 02:13 PM
Quote:
Originally Posted by phil_r
My first guess is it's something like this, but for 8-max on whatever site you are playing on instead of 5-max on Full Tilt.
Hi,

I made the change for 6cPLO 5 handed and that works.

I was talking about Stud games on PS. Those are for the most part 8 handed and I can't get the hud to work. The hud does work for stud during Horse & 8 game.. any suggestions? thanks.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
05-31-2015 , 02:43 PM
Phil_r do you have a page to accept donation? I would like to contribute a small amount to thank you for the updates.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
05-31-2015 , 09:34 PM
Quote:
Originally Posted by Shooter002
Hi,

I made the change for 6cPLO 5 handed and that works.

I was talking about Stud games on PS. Those are for the most part 8 handed and I can't get the hud to work. The hud does work for stud during Horse & 8 game.. any suggestions? thanks.
Curious. Is there anything in the log files? It might be that the mucked cards display is broken for stud games in my release, but then I would expect it to not work in horse/8game... Anyway you could try searching for this:

Code:
        <game aux="stud_mucked, Classic_HUD" game_name="studhi">
and remove the part in red. It might help. Maybe. There are similar lines for razz and studhilo.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
05-31-2015 , 09:34 PM
Quote:
Originally Posted by mreps
Phil_r do you have a page to accept donation? I would like to contribute a small amount to thank you for the updates.
Nope, sorry!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
05-31-2015 , 11:16 PM
Quote:
Originally Posted by phil_r
Nope, sorry!
Well you should make one! Your work has benefited many players and I am sure I am not the only one that appreciates the fpdb update/support.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 04:35 PM
hi phil_r

1) Is it possible to display some of the popup stats in Cash/Ring Player Stats?
Or add or delete columns from Cash/Ring Player Stats?

I'm particularly interested in swapping bbper100 into BBper100 as I'm playing Limit games.

I tried to change the name of the stat in the config file, <gui_cash_stats> but it didn't work.

2) second question: in Cash/Graphs there is either $ or BB value to be displayed.
So that BB in a Graph - is it BIGBETS or bigblinds?

EDIT:

3) third question:

dbr1 : % DonkBetAndRaise flop/4th street

is that whenever someone took a line of donkbetting AND FOLLOWED IT with an instant re-raise? (all in one hand)
or is that whenever someone either donk bets OR raises? (in general in many hands)

Last edited by Pavulon; 06-01-2015 at 05:03 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 06:18 PM
4) I've got a BBper100 displayed in my HUD, but it's a very long number: 3.042
is it possible to somehow shorten the display by two digits? ( so it would show 3.0 )

5)how to hide hero's HUD?

Last edited by Pavulon; 06-01-2015 at 06:26 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 07:05 PM
Quote:
Originally Posted by phil_r
Curious. Is there anything in the log files? It might be that the mucked cards display is broken for stud games in my release, but then I would expect it to not work in horse/8game... Anyway you could try searching for this:

Code:
        <game aux="stud_mucked, Classic_HUD" game_name="studhi">
and remove the part in red. It might help. Maybe. There are similar lines for razz and studhilo.
Alright, another one fixed. Last question.. For some of the games the hud's aren't positioned next to the right player. How and where can I change this? thank you..

As suggested by Mreps, you should set up some kind of donation option. Your work is very much appreciated..
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 09:32 PM
Quote:
Originally Posted by Pavulon
hi phil_r

1) Is it possible to display some of the popup stats in Cash/Ring Player Stats?
Or add or delete columns from Cash/Ring Player Stats?

I'm particularly interested in swapping bbper100 into BBper100 as I'm playing Limit games.

I tried to change the name of the stat in the config file, <gui_cash_stats> but it didn't work.
You can change the columns displayed in cash/ring stats, but they are not the same stats as the ones shown in the HUD. Some may be the same, but it's a completely independent code path. Unfortunately it looks to me like BBper100 is not supported.

Quote:
Originally Posted by Pavulon
2) second question: in Cash/Graphs there is either $ or BB value to be displayed.
So that BB in a Graph - is it BIGBETS or bigblinds?
Looks like Big Bets to me:

Code:
( hp.totalProfit / ( gt.bigBlind  * 2.0 ) ) * 100
Quote:
Originally Posted by Pavulon
3) third question:

dbr1 : % DonkBetAndRaise flop/4th street

is that whenever someone took a line of donkbetting AND FOLLOWED IT with an instant re-raise? (all in one hand)
or is that whenever someone either donk bets OR raises? (in general in many hands)
I think it's when someone either donks or raises flop.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 09:44 PM
Quote:
Originally Posted by Pavulon
4) I've got a BBper100 displayed in my HUD, but it's a very long number: 3.042
is it possible to somehow shorten the display by two digits? ( so it would show 3.0 )
Change it to BBper100_1 - the _1 part tells it to round to 1 decimal place. I fixed some bug with this feature recently so it might be broken, I can't remember the details.

Quote:
Originally Posted by Pavulon
5)how to hide hero's HUD?
I... don't think you can.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-01-2015 , 09:46 PM
Quote:
Originally Posted by Shooter002
Alright, another one fixed. Last question.. For some of the games the hud's aren't positioned next to the right player. How and where can I change this? thank you..

As suggested by Mreps, you should set up some kind of donation option. Your work is very much appreciated..
Drag them to where you want them, then right-click the little "FPDBMenu" window and you should get a popup with a bunch of stuff on it, including "Save HUD layout" or something like that.

Edit: or you might need to set and save a preferred seat option for that table size. I think that requires editing the HUD config, search for fav_seat.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 06:34 PM
Hey,

is there anyway to get winamax 5-max tables working?

Thanks

EDIT: my bad, it's actually already working in this version

Last edited by Babarberousse; 06-02-2015 at 06:50 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 06:41 PM
Quote:
Originally Posted by Babarberousse
Hey,

is there anyway to get winamax 5-max tables working?

Thanks
http://forumserver.twoplustwo.com/sh...postcount=7926
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 07:24 PM
Seems to be working great but I don't remember how to configure the HUD?

Do I have to manually edit HUD_config.xml.example or is there another way? Any guide to help me find the stats I'm looking for?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 07:27 PM
Quote:
Originally Posted by Babarberousse
Seems to be working great but I don't remember how to configure the HUD?

Do I have to manually edit HUD_config.xml.example or is there another way? Any guide to help me find the stats I'm looking for?
0.40.5 (and earlier) had a GUI configurator thing. I took it out for my betas because I didn't like it, so yeah, now you have to edit HUD_config.xml (no .example).

There's some info about that here.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 07:43 PM
Hi phil , thanks for your answers

Quote:
Change it to BBper100_1 - the _1 part tells it to round to 1 decimal place. I fixed some bug with this feature recently so it might be broken, I can't remember the details.
yeah, looks like something is not quite right

BBper100 is displayed like this: 3.163

BBper100_1 is displayed like this: 316.3

BBper100_2 is displayed like this: 316.31

BBper100_0 is displayed like this: 316 (no dot and some of my opponents' displays four digits: -1873)

BBper100_-1 displays: xxx (thought i'd give it a go anyway )
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 08:43 PM
Quote:
Originally Posted by phil_r
0.40.5 (and earlier) had a GUI configurator thing. I took it out for my betas because I didn't like it, so yeah, now you have to edit HUD_config.xml (no .example).

There's some info about that here.
Ok, so I edited the <site> in the .example file and renamed it to HUD_config.xml. How do I get it to work? When I reload the HUD it loads nothing. But to be honest I have no idea whether my config file is filled correctly or not...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-02-2015 , 10:37 PM
Quote:
Originally Posted by Babarberousse
Ok, so I edited the <site> in the .example file and renamed it to HUD_config.xml. How do I get it to work? When I reload the HUD it loads nothing. But to be honest I have no idea whether my config file is filled correctly or not...
Help menu -> about fpdb. It should tell you where the config file is you need to edit.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-03-2015 , 01:27 PM
Edit: or you might need to set and save a preferred seat option for that table size. I think that requires editing the HUD config, search for fav_seat.[/QUOTE]

You were right. all the Fav_seats were set on 0. that's why dragging the hud manually didn't help. Changed it for all the tables and workes great. thank you sir...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-03-2015 , 03:06 PM
Using linux (xubuntu), everything seems to work, but I can not figure out why for some reason Spin & Go do not seem to be recoginised. Any ideas?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-03-2015 , 09:18 PM
Quote:
Originally Posted by karlj
Using linux (xubuntu), everything seems to work, but I can not figure out why for some reason Spin & Go do not seem to be recoginised. Any ideas?
Maybe you don't have a 3-seat layout defined? Look at recent posts for links to adding a seat layout.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-04-2015 , 12:09 AM
I have huge problems with this. Been trying to do pretty much anything to import hands but just can't do it. Nothing happens when I'm trying to do that bulk import. I got the path right, just straight where my Pokerstars hand history is. When I click hud and auto import it says auto import running. And it does take hours when it is running but nothing happens. On my site settings I put both cash and tourney histories and still nothing happens. I guess I really have no idea how this works... I'm glad if some of you understood what I was trying to say here. Thanks in advance.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-04-2015 , 01:11 AM
Quote:
Originally Posted by Olomes
I have huge problems with this. Been trying to do pretty much anything to import hands but just can't do it. Nothing happens when I'm trying to do that bulk import. I got the path right, just straight where my Pokerstars hand history is. When I click hud and auto import it says auto import running. And it does take hours when it is running but nothing happens. On my site settings I put both cash and tourney histories and still nothing happens. I guess I really have no idea how this works... I'm glad if some of you understood what I was trying to say here. Thanks in advance.
Is there anything in the log files? Help menu -> log files IIRC. A common problem is that you don't have your pokerstars HH language set to English.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-04-2015 , 12:28 PM
I changed my PS to english yesterday and was able to get todays hands in. So now I can see my own graph for example. But still can't get the hud and auto import working. Do I need to create new file where is only the hands I've played when my Stars is in english? Because there are now hands that the fpdb can't find. So it blocks also the valid hands I guess? How can I get other players stats to show? Nothing happens when I choose their nicks and try to show their stats. Also can't show session stats or positional stats.

EDIT: Were able to get the stats. Now just need to figure out how to get the hud working

Last edited by Olomes; 06-04-2015 at 12:49 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m