It seems as though the number of hands I have seen from other players will reset after awhile, in the HUD. The results and stats don't seem to be accurate. I have playing pokerstar sng single table tourns.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
in tournaments it displays totals for the blind level .. there's an option somewhere to change that .. an aggregate option.. don't remember where it is though
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Here is a rather ugly fix for Holdem NL tourneys. WARNING: quickly tested on 1 sng and NOT tested on any other type of tournament and NOT checked on cash games.
in file fpdb_simple.py, at about line 1260 add the two lines shown in this snippet:
def recogniseGametypeID(backend, db, cursor, topline, smallBlindLine, site_id, category, isTourney):#todo: this method is messy
#if (topline.find("HORSE")!=-1):
# raise FpdbError("recogniseGametypeID: HORSE is not yet supported.")
#note: the below variable names small_bet and big_bet are misleading, in NL/PL they mean small/big blind
if isTourney:
type="tour"
pos1=topline.find("(")+1
if (topline=="H" or topline=="O" or topline=="R" or topline=="S" or topline=="C"):
pos1=topline.find("(", pos1)+1
pos2=topline.find("/", pos1)
small_bet=int(topline)
############## add the following line ###############
small_bet=0
pos1=pos2+2
if isTourney:
pos1-=1
if (site_id==1): #ftp
pos2=topline.find(" ", pos1)
elif (site_id==2): #ps
pos2=topline.find(")")
if pos2<=pos1:
pos2=topline.find(")", pos1)
if isTourney:
big_bet=int(topline)
############## add the following line ###############
big_bet=0
Basically, the patch prevents the small and big blind being set when the hands and hudcache row is inserted (every tournament hand is therefore saved as a single gametypeID with the smallblind and bigblind columns set to zero.)
Probably -EV to give this patch !!!!
p.s. This patch is not very helpful for players who change gears after the 4th level !!!!!!!
regards
s~
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
It seems as though the number of hands I have seen from other players will reset after awhile, in the HUD. The results and stats don't seem to be accurate. I have playing pokerstar sng single table tourns.
same problem
in tournaments it displays totals for the blind level .. there's an option somewhere to change that .. an aggregate option.. don't remember where it is though
same problem..
have you resolved it?
Is anybody have the solution?
I have the same problem. I have tried to find where this aggregate option is, but not found. Can someone help me please?
Which code are you running? The latest download from here or code from someone's git repo?
-sc
I use 0.11.3 version on windows XP. So it's the latest download from here. When the level increase, the Hud restart to 0. How resolve it?
I use also the last version from here. I tried to find a way to avoid the reset, but not found. Some idea?
Here is a rather ugly fix for Holdem NL tourneys. WARNING: quickly tested on 1 sng and NOT tested on any other type of tournament and NOT checked on cash games.
in file fpdb_simple.py, at about line 1260 add the two lines shown in this snippet:
def recogniseGametypeID(backend, db, cursor, topline, smallBlindLine, site_id, category, isTourney):#todo: this method is messy
#if (topline.find("HORSE")!=-1):
# raise FpdbError("recogniseGametypeID: HORSE is not yet supported.")
#note: the below variable names small_bet and big_bet are misleading, in NL/PL they mean small/big blind
if isTourney:
type="tour"
pos1=topline.find("(")+1
if (topline=="H" or topline=="O" or topline=="R" or topline=="S" or topline=="C"):
pos1=topline.find("(", pos1)+1
pos2=topline.find("/", pos1)
small_bet=int(topline)
############## add the following line ###############
small_bet=0
else:
type="ring"
pos1=topline.find("$")+1
pos2=topline.find("/$")
small_bet=float2int(topline)
pos1=pos2+2
if isTourney:
pos1-=1
if (site_id==1): #ftp
pos2=topline.find(" ", pos1)
elif (site_id==2): #ps
pos2=topline.find(")")
if pos2<=pos1:
pos2=topline.find(")", pos1)
if isTourney:
big_bet=int(topline)
############## add the following line ###############
big_bet=0
Basically, the patch prevents the small and big blind being set when the hands and hudcache row is inserted (every tournament hand is therefore saved as a single gametypeID with the smallblind and bigblind columns set to zero.)
Probably -EV to give this patch !!!!
p.s. This patch is not very helpful for players who change gears after the 4th level !!!!!!!
regards
s~
"*I use 0.11.3 version on windows XP.*"
Try editing the file HUD\_main.py and change the aggregation settings (somewhere near line 54) like this:
aggregate_stats = {"ring": False, "tour": True}
This should make the HUD display aggregated stats if you're playing a tournament.
\- sc