remove obselete&broken regression testing stuff
This commit is contained in:
parent
00767d4cf7
commit
4a3f4a7b0f
File diff suppressed because it is too large
Load Diff
|
@ -1,126 +0,0 @@
|
|||
fpdb database dump
|
||||
DB version=143
|
||||
|
||||
###################
|
||||
Table Autorates
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Backings
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Gametypes
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Hands
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table HandsActions
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table HandsPlayers
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table HudCache
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Players
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table RawHands
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table RawTourneys
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Settings
|
||||
###################
|
||||
version=143
|
||||
|
||||
|
||||
###################
|
||||
Table Sites
|
||||
###################
|
||||
id=1
|
||||
name=Full Tilt Poker
|
||||
code=FT
|
||||
|
||||
id=2
|
||||
name=PokerStars
|
||||
code=PS
|
||||
|
||||
id=3
|
||||
name=Everleaf
|
||||
code=EV
|
||||
|
||||
id=4
|
||||
name=Win2day
|
||||
code=W2
|
||||
|
||||
id=5
|
||||
name=OnGame
|
||||
code=OG
|
||||
|
||||
id=6
|
||||
name=UltimateBet
|
||||
code=UB
|
||||
|
||||
id=7
|
||||
name=Betfair
|
||||
code=BF
|
||||
|
||||
id=8
|
||||
name=Absolute
|
||||
code=AB
|
||||
|
||||
id=9
|
||||
name=PartyPoker
|
||||
code=PP
|
||||
|
||||
id=10
|
||||
name=Partouche
|
||||
code=PA
|
||||
|
||||
id=11
|
||||
name=Carbon
|
||||
code=CA
|
||||
|
||||
id=12
|
||||
name=PKR
|
||||
code=PK
|
||||
|
||||
|
||||
###################
|
||||
Table TourneyTypes
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table Tourneys
|
||||
###################
|
||||
empty table
|
||||
|
||||
###################
|
||||
Table TourneysPlayers
|
||||
###################
|
||||
empty table
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,175 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#Copyright 2008-2011 Steffen Schaumburg
|
||||
#This program is free software: you can redistribute it and/or modify
|
||||
#it under the terms of the GNU Affero General Public License as published by
|
||||
#the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
#This program is distributed in the hope that it will be useful,
|
||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
#GNU General Public License for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU Affero General Public License
|
||||
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
||||
|
||||
#This is intended mostly for regression testing
|
||||
|
||||
import sys
|
||||
import MySQLdb
|
||||
from optparse import OptionParser
|
||||
import fpdb_util_lib as ful
|
||||
|
||||
parser = OptionParser()
|
||||
parser.add_option("-n", "--handNumber", "--hand", type="int",
|
||||
help="Number of the hand to print")
|
||||
parser.add_option("-p", "--password", help="The password for the MySQL user")
|
||||
parser.add_option("-s", "--site", default="PokerStars",
|
||||
help="Name of the site (as written in the history files)")
|
||||
|
||||
(options, sys.argv) = parser.parse_args()
|
||||
|
||||
if options.handNumber==None or options.site==None:
|
||||
print "please supply a hand number and site name. TODO: make this work"
|
||||
|
||||
db = MySQLdb.connect("localhost", "fpdb", options.password, "fpdb")
|
||||
cursor = db.cursor()
|
||||
print "Connected to MySQL on localhost. Print Hand Utility"
|
||||
|
||||
cursor.execute("SELECT id FROM Sites WHERE name=%s", (options.site,))
|
||||
siteId=cursor.fetchone()[0]
|
||||
print "options.site:",options.site,"siteId:",siteId
|
||||
|
||||
print ""
|
||||
print "From Table Hands"
|
||||
print "================"
|
||||
|
||||
cursor.execute("""SELECT Hands.* FROM Hands INNER JOIN Gametypes
|
||||
ON Hands.gametypeId = Gametypes.id WHERE Gametypes.siteId=%s AND Hands.siteHandNo=%s""",
|
||||
(siteId, options.handNumber))
|
||||
handsResult=cursor.fetchone()
|
||||
handId=handsResult[0]
|
||||
tableName=handsResult[1]
|
||||
siteHandNo=options.handNumber
|
||||
gametypeId=handsResult[3]
|
||||
handStart=handsResult[4]
|
||||
#skip importTime
|
||||
seats=handsResult[6]
|
||||
maxSeats=handsResult[7]
|
||||
print "handId:", handId, " tableName:", tableName, " siteHandNo:", siteHandNo, " gametypeId:", gametypeId, " handStart:", handStart, " seats:", seats, " maxSeats:", maxSeats
|
||||
|
||||
|
||||
print ""
|
||||
print "From Table Gametypes"
|
||||
print "===================="
|
||||
|
||||
cursor.execute("""SELECT type, base, category, limitType, hiLo FROM Gametypes WHERE id=%s""", (gametypeId, ))
|
||||
typeEtc=cursor.fetchone()
|
||||
type=typeEtc[0]
|
||||
base=typeEtc[1]
|
||||
category=typeEtc[2]
|
||||
limitType=typeEtc[3]
|
||||
hiLo=typeEtc[4]
|
||||
print "type:", type, " base:", base, " category:", category, " limitType:", limitType, " hiLo:", hiLo
|
||||
|
||||
gtString=""
|
||||
doBets=False
|
||||
if base=="hold":
|
||||
cursor.execute("SELECT smallBlind FROM Gametypes WHERE id=%s", (gametypeId, ))
|
||||
sb=cursor.fetchone()[0]
|
||||
cursor.execute("SELECT bigBlind FROM Gametypes WHERE id=%s", (gametypeId, ))
|
||||
bb=cursor.fetchone()[0]
|
||||
gtString=("sb: "+str(sb)+" bb: "+str(bb))
|
||||
if (limitType=="fl"):
|
||||
doBets=True
|
||||
elif base=="stud":
|
||||
doBets=True
|
||||
|
||||
if doBets:
|
||||
cursor.execute("SELECT smallBet FROM Gametypes WHERE id=%s", (gametypeId, ))
|
||||
sbet=cursor.fetchone()[0]
|
||||
cursor.execute("SELECT bigBet FROM Gametypes WHERE id=%s", (gametypeId, ))
|
||||
bbet=cursor.fetchone()[0]
|
||||
gtString+=(" sbet: "+str(sbet)+" bbet: "+str(bbet))
|
||||
print gtString
|
||||
|
||||
if type=="ring":
|
||||
pass
|
||||
elif type=="tour":
|
||||
#cursor.execute("SELECT tourneys_players_id FROM hands
|
||||
cursor.execute("""SELECT DISTINCT TourneysPlayers.id
|
||||
FROM Hands JOIN HandsPlayers ON HandsPlayers.handId=Hands.id
|
||||
JOIN TourneysPlayers ON HandsPlayers.tourneysPlayersId=TourneysPlayers.id
|
||||
WHERE Hands.id=%s""", (hand_id,))
|
||||
handsPlayersIds=cursor.fetchall()
|
||||
print "dbg hands_players_ids:",handsPlayersIds
|
||||
|
||||
print ""
|
||||
print "From Table Tourneys"
|
||||
print "==================="
|
||||
print "TODO"
|
||||
|
||||
|
||||
print ""
|
||||
print "From Table TourneysPlayers"
|
||||
print "=========================="
|
||||
print "TODO"
|
||||
else:
|
||||
print "invalid type:",type
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
print ""
|
||||
print "From Table BoardCards"
|
||||
print "====================="
|
||||
|
||||
if (category=="holdem" or category=="omahahi" or category=="omahahilo"):
|
||||
cursor.execute("""SELECT * FROM BoardCards WHERE handId=%s""",(handId, ))
|
||||
bc=cursor.fetchone()
|
||||
print "Board cards:", ful.cards2String(bc[2:])
|
||||
|
||||
|
||||
print ""
|
||||
print "From Table HandsPlayers"
|
||||
print "======================="
|
||||
cursor.execute("""SELECT * FROM HandsPlayers WHERE handId=%s""",(handId, ))
|
||||
handsPlayers=cursor.fetchall()
|
||||
playerNames=[]
|
||||
for i in range (len(handsPlayers)):
|
||||
line=handsPlayers[i][2:]
|
||||
playerNames.append(ful.id_to_player_name(cursor, line[0]))
|
||||
printstr="playerName:"+playerNames[i]+" playerStartcash:"+str(line[1])
|
||||
if (category=="holdem" or category=="omahahi" or category=="omahahilo"):
|
||||
printstr+=" position:"+ful.position2String(line[2])+" cards:"
|
||||
if (category=="holdem"):
|
||||
printstr+=ful.cards2String(line[5:9])
|
||||
else:
|
||||
printstr+=ful.cards2String(line[5:13])
|
||||
elif (category=="razz" or category=="studhi" or category=="studhilo"):
|
||||
printstr+=" ante:"+str(line[4])+" cards:"
|
||||
printstr+=ful.cards2String(line[5:19])
|
||||
else:
|
||||
print "TODO: raise error, print_hand.py"
|
||||
sys.exit(1)
|
||||
printstr+=" winnings:"+str(line[19])+" rake:"+str(line[20])
|
||||
print printstr
|
||||
|
||||
|
||||
print ""
|
||||
print "From Table HandsActions"
|
||||
print "======================="
|
||||
for i in range (len(handsPlayers)):
|
||||
cursor.execute("""SELECT * FROM HandsActions WHERE handPlayerId=%s""",(handsPlayers[i][0], ))
|
||||
handsActions=cursor.fetchall()
|
||||
for j in range (len(handsActions)):
|
||||
line=handsActions[j][2:]
|
||||
printstr="playerName:"+playerNames[i]
|
||||
printstr+=" street:"+ful.street_int2String(category, line[0])+" streetActionNo:"+str(line[1])+" action:"+line[2]
|
||||
printstr+=" amount:"+str(line[4])
|
||||
print printstr
|
||||
|
||||
cursor.close()
|
||||
db.close()
|
||||
sys.exit(0)
|
|
@ -1,158 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#Copyright 2008-2011 Steffen Schaumburg
|
||||
#This program is free software: you can redistribute it and/or modify
|
||||
#it under the terms of the GNU Affero General Public License as published by
|
||||
#the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
#This program is distributed in the hope that it will be useful,
|
||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
#GNU General Public License for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU Affero General Public License
|
||||
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
||||
|
||||
#This is intended mostly for regression testing
|
||||
|
||||
import sys
|
||||
import MySQLdb
|
||||
from optparse import OptionParser
|
||||
import fpdb_util_lib as ful
|
||||
|
||||
parser = OptionParser()
|
||||
parser.add_option("-b", "--bigBet", default="4", type="int", help="big bet in cent")
|
||||
parser.add_option("-c", "--cat", "--category", default="holdem", help="Category, e.g. holdem or studhilo")
|
||||
parser.add_option("-e", "--seats", default="7", type="int", help="number of active seats")
|
||||
parser.add_option("-g", "--gameType", default="ring", help="Whether its a ringgame (ring) or a tournament (tour)")
|
||||
parser.add_option("-l", "--limit", "--limitType", default="fl", help="Limit Type, one of: nl, pl, fl, cn, cp")
|
||||
parser.add_option("-n", "--name", "--playername", default="Player_1", help="Name of the player to print")
|
||||
parser.add_option("-o", "--position", default="B", help="Position, can be B, S, D, C, M or E (see tabledesign.html)")
|
||||
parser.add_option("-p", "--password", help="The password for the MySQL user")
|
||||
parser.add_option("-s", "--site", default="PokerStars", help="Name of the site (as written in the history files)")
|
||||
|
||||
(options, sys.argv) = parser.parse_args()
|
||||
|
||||
db = MySQLdb.connect("localhost", "fpdb", options.password, "fpdb")
|
||||
cursor = db.cursor()
|
||||
print "Connected to MySQL on localhost. Print Player Flags Utility"
|
||||
|
||||
print ""
|
||||
print "Basic Data"
|
||||
print "=========="
|
||||
print "bigBet:",options.bigBet, "category:",options.cat, "limitType:", options.limit, "name:", options.name, "gameType:", options.gameType, "site:", options.site
|
||||
|
||||
cursor.execute("SELECT id FROM Sites WHERE name=%s", (options.site,))
|
||||
siteId=cursor.fetchone()[0]
|
||||
|
||||
cursor.execute("SELECT id FROM Gametypes WHERE bigBet=%s AND category=%s AND siteId=%s AND limitType=%s AND type=%s", (options.bigBet, options.cat, siteId, options.limit, options.gameType))
|
||||
gametypeId=cursor.fetchone()[0]
|
||||
|
||||
cursor.execute("SELECT id FROM Players WHERE name=%s", (options.name,))
|
||||
playerId=cursor.fetchone()[0]
|
||||
|
||||
#print "debug: gametypeId:", gametypeId, "playerId:", playerId, "options.seats:", options.seats, "options.position:", options.position
|
||||
cursor.execute("SELECT id FROM HudCache WHERE gametypeId=%s AND playerId=%s AND activeSeats=%s AND position=%s",(gametypeId, playerId, options.seats, options.position))
|
||||
hudDataId=cursor.fetchone()[0]
|
||||
|
||||
print "siteId:", siteId, "gametypeId:", gametypeId, "playerId:", playerId, "hudDataId:", hudDataId
|
||||
|
||||
print ""
|
||||
print "HUD Raw Hand Counts"
|
||||
print "==================="
|
||||
|
||||
cursor.execute ("SELECT HDs, street0VPI, street0Aggr, street0_3B4BChance, street0_3B4BDone FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "HDs:",fields[0]
|
||||
print "street0VPI:",fields[1]
|
||||
print "street0Aggr:",fields[2]
|
||||
print "street0_3B4BChance:",fields[3]
|
||||
print "street0_3B4BDone:",fields[4]
|
||||
print ""
|
||||
|
||||
cursor.execute ("SELECT street1Seen, street2Seen, street3Seen, street4Seen, sawShowdown FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "street1Seen:",fields[0]
|
||||
print "street2Seen:",fields[1]
|
||||
print "street3Seen:",fields[2]
|
||||
print "street4Seen:",fields[3]
|
||||
print "sawShowdown:",fields[4]
|
||||
print ""
|
||||
|
||||
cursor.execute ("SELECT street1Aggr, street2Aggr, street3Aggr, street4Aggr FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "street1Aggr:",fields[0]
|
||||
print "street2Aggr:",fields[1]
|
||||
print "street3Aggr:",fields[2]
|
||||
print "street4Aggr:",fields[3]
|
||||
print ""
|
||||
|
||||
cursor.execute ("SELECT otherRaisedStreet1, otherRaisedStreet2, otherRaisedStreet3, otherRaisedStreet4, foldToOtherRaisedStreet1, foldToOtherRaisedStreet2, foldToOtherRaisedStreet3, foldToOtherRaisedStreet4 FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "otherRaisedStreet1:",fields[0]
|
||||
print "otherRaisedStreet2:",fields[1]
|
||||
print "otherRaisedStreet3:",fields[2]
|
||||
print "otherRaisedStreet4:",fields[3]
|
||||
print "foldToOtherRaisedStreet1:",fields[4]
|
||||
print "foldToOtherRaisedStreet2:",fields[5]
|
||||
print "foldToOtherRaisedStreet3:",fields[6]
|
||||
print "foldToOtherRaisedStreet4:",fields[7]
|
||||
print ""
|
||||
|
||||
cursor.execute ("SELECT wonWhenSeenStreet1, wonAtSD FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "wonWhenSeenStreet1:",fields[0]
|
||||
print "wonAtSD:",fields[1]
|
||||
|
||||
cursor.execute ("SELECT stealAttemptChance, stealAttempted, foldBbToStealChance, foldedBbToSteal, foldSbToStealChance, foldedSbToSteal FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "stealAttemptChance:",fields[0]
|
||||
print "stealAttempted:",fields[1]
|
||||
print "foldBbToStealChance:",fields[2]
|
||||
print "foldedBbToSteal:",fields[3]
|
||||
print "foldSbToStealChance:",fields[4]
|
||||
print "foldedSbToSteal:",fields[5]
|
||||
|
||||
cursor.execute ("SELECT street1CBChance, street1CBDone, street2CBChance, street2CBDone, street3CBChance, street3CBDone, street4CBChance, street4CBDone FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "street1CBChance:",fields[0]
|
||||
print "street1CBDone:",fields[1]
|
||||
print "street2CBChance:",fields[2]
|
||||
print "street2CBDone:",fields[3]
|
||||
print "street3CBChance:",fields[4]
|
||||
print "street3CBDone:",fields[5]
|
||||
print "street4CBChance:",fields[6]
|
||||
print "street4CBDone:",fields[7]
|
||||
|
||||
cursor.execute ("SELECT foldToStreet1CBChance, foldToStreet1CBDone, foldToStreet2CBChance, foldToStreet2CBDone, foldToStreet3CBChance, foldToStreet3CBDone, foldToStreet4CBChance, foldToStreet4CBDone FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "foldToStreet1CBChance:",fields[0]
|
||||
print "foldToStreet1CBDone:",fields[1]
|
||||
print "foldToStreet2CBChance:",fields[2]
|
||||
print "foldToStreet2CBDone:",fields[3]
|
||||
print "foldToStreet3CBChance:",fields[4]
|
||||
print "foldToStreet3CBDone:",fields[5]
|
||||
print "foldToStreet4CBChance:",fields[6]
|
||||
print "foldToStreet4CBDone:",fields[7]
|
||||
|
||||
cursor.execute ("SELECT totalProfit FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "totalProfit:",fields[0]
|
||||
|
||||
cursor.execute ("SELECT street1CheckCallRaiseChance, street1CheckCallRaiseDone, street2CheckCallRaiseChance, street2CheckCallRaiseDone, street3CheckCallRaiseChance, street3CheckCallRaiseDone, street4CheckCallRaiseChance, street4CheckCallRaiseDone FROM HudCache WHERE id=%s", (hudDataId,))
|
||||
fields=cursor.fetchone()
|
||||
print "street1CheckCallRaiseChance:",fields[0]
|
||||
print "street1CheckCallRaiseDone:",fields[1]
|
||||
print "street2CheckCallRaiseChance:",fields[2]
|
||||
print "street2CheckCallRaiseDone:",fields[3]
|
||||
print "street3CheckCallRaiseChance:",fields[4]
|
||||
print "street3CheckCallRaiseDone:",fields[5]
|
||||
print "street4CheckCallRaiseChance:",fields[6]
|
||||
print "street4CheckCallRaiseDone:",fields[7]
|
||||
|
||||
|
||||
cursor.close()
|
||||
db.close()
|
||||
sys.exit(0)
|
|
@ -1,80 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
#Copyright 2008-2011 Steffen Schaumburg
|
||||
#This program is free software: you can redistribute it and/or modify
|
||||
#it under the terms of the GNU Affero General Public License as published by
|
||||
#the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
#This program is distributed in the hope that it will be useful,
|
||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
#GNU General Public License for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU Affero General Public License
|
||||
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
||||
|
||||
import sys
|
||||
|
||||
def cards2String(arr):
|
||||
if (len(arr)%2!=0):
|
||||
print "TODO: raise error, cards2String failed, uneven length of arr"
|
||||
sys.exit(1)
|
||||
result = ""
|
||||
for i in range (len(arr)/2):
|
||||
if arr[i*2]==0:
|
||||
result+="??"
|
||||
else:
|
||||
if arr[i*2]==14:
|
||||
result+="A"
|
||||
elif arr[i*2]==13:
|
||||
result+="K"
|
||||
elif arr[i*2]==12:
|
||||
result+="Q"
|
||||
elif arr[i*2]==11:
|
||||
result+="J"
|
||||
elif arr[i*2]==10:
|
||||
result+="T"
|
||||
elif (arr[i*2]>=2 and arr[i*2]<=9):
|
||||
result+=str(arr[i*2])
|
||||
else:
|
||||
print "TODO: raise error, cards2String failed, arr[i*2]:", arr[i*2], "len(arr):", len(arr)
|
||||
print "arr:",arr
|
||||
sys.exit(1)
|
||||
result+=arr[i*2+1]
|
||||
result+=" "
|
||||
return result[:-1]
|
||||
|
||||
def id_to_player_name(cursor, id):
|
||||
cursor.execute("SELECT name FROM Players WHERE id=%s", (id, ))
|
||||
return cursor.fetchone()[0]
|
||||
|
||||
def position2String(pos):
|
||||
if pos=="B":
|
||||
return "BB"
|
||||
elif pos=="S":
|
||||
return "SB"
|
||||
elif pos=="0":
|
||||
return "Btn"
|
||||
else:
|
||||
return (pos+" off Btn")
|
||||
|
||||
def street_int2String(category, street):
|
||||
if (category=="holdem" or category=="omahahi" or category=="omahahilo"):
|
||||
if street==0:
|
||||
return "Preflop"
|
||||
elif street==1:
|
||||
return "Flop "
|
||||
elif street==2:
|
||||
return "Turn "
|
||||
elif street==3:
|
||||
return "River "
|
||||
else:
|
||||
print "TODO: raise error, fpdb_util_lib.py street_int2String invalid street no"
|
||||
sys.exit(1)
|
||||
elif (category=="razz" or category=="studhi" or category=="studhilo"):
|
||||
return str(street)
|
||||
else:
|
||||
print "TODO: raise error, fpdb_util_lib.py street_int2String invalid category"
|
||||
sys.exit(1)
|
|
@ -1,271 +0,0 @@
|
|||
Full Tilt Poker Game #6929537410: Table Green (deep) - $0.50/$1 - Pot Limit Omaha Hi - 17:15:44 ET - 2008/06/22
|
||||
Seat 1: player16 ($94.90)
|
||||
Seat 2: player25 ($147)
|
||||
Seat 3: player18 ($62.80)
|
||||
Seat 4: player19 ($136.55)
|
||||
Seat 5: play-er26 ($56.05)
|
||||
Seat 6: player21 ($252.95)
|
||||
Seat 7: player22 ($200)
|
||||
Seat 8: player23 ($162.50)
|
||||
Seat 9: player24 ($270.70)
|
||||
player24 posts the small blind of $0.50
|
||||
player16 posts the big blind of $1
|
||||
player22 posts $1
|
||||
The button is in seat #8
|
||||
*** HOLE CARDS ***
|
||||
player25 folds
|
||||
player25 stands up
|
||||
player18 folds
|
||||
player19 folds
|
||||
play-er26 folds
|
||||
player21 folds
|
||||
player22 checks
|
||||
player23 calls $1
|
||||
player17 adds $100
|
||||
player24 calls $0.50
|
||||
player16 checks
|
||||
*** FLOP *** [4s Kc 8s]
|
||||
player24 has 15 seconds left to act
|
||||
player24 checks
|
||||
player16 checks
|
||||
player22 checks
|
||||
player23 checks
|
||||
*** TURN *** [4s Kc 8s] [6s]
|
||||
player24 checks
|
||||
player16 checks
|
||||
player22 checks
|
||||
player23 bets $4
|
||||
player24 calls $4
|
||||
player16 folds
|
||||
player22 folds
|
||||
*** RIVER *** [4s Kc 8s 6s] [Qc]
|
||||
player24 checks
|
||||
player23 checks
|
||||
*** SHOW DOWN ***
|
||||
player23 shows [Td 5s 3d Js] a flush, Jack high
|
||||
player24 mucks
|
||||
player23 wins the pot ($11.40) with a flush, Jack high
|
||||
*** SUMMARY ***
|
||||
Total pot $12 | Rake $0.60
|
||||
Board: [4s Kc 8s 6s Qc]
|
||||
Seat 1: player16 (big blind) folded on the Turn
|
||||
Seat 2: player25 didn't bet (folded)
|
||||
Seat 3: player18 didn't bet (folded)
|
||||
Seat 4: player19 didn't bet (folded)
|
||||
Seat 5: play-er26 didn't bet (folded)
|
||||
Seat 6: player21 didn't bet (folded)
|
||||
Seat 7: player22 folded on the Turn
|
||||
Seat 8: player23 (button) collected ($11.40)
|
||||
Seat 9: player24 (small blind) mucked
|
||||
|
||||
|
||||
|
||||
Full Tilt Poker Game #6929553738: Table Green (deep) - $0.50/$1 - Pot Limit Omaha Hi - 17:17:06 ET - 2008/06/22
|
||||
Seat 1: player16 ($93.90)
|
||||
Seat 2: player17 ($100)
|
||||
Seat 3: player18 ($62.80)
|
||||
Seat 4: player19 ($136.55)
|
||||
Seat 5: play-er26 ($56.05)
|
||||
Seat 6: player21 ($252.95)
|
||||
Seat 7: player22 ($199)
|
||||
Seat 8: player23 ($168.90)
|
||||
Seat 9: player24 ($265.70)
|
||||
player16 posts the small blind of $0.50
|
||||
player17 posts the big blind of $1
|
||||
The button is in seat #9
|
||||
*** HOLE CARDS ***
|
||||
player18 folds
|
||||
play-er26 stands up
|
||||
player19 raises to $2
|
||||
play-er26 folds
|
||||
player21 calls $2
|
||||
player22 has 15 seconds left to act
|
||||
player22 folds
|
||||
player23 folds
|
||||
player24 folds
|
||||
player16 calls $1.50
|
||||
player17 calls $1
|
||||
*** FLOP *** [Jc 4c Kc]
|
||||
player16 checks
|
||||
player17 checks
|
||||
player19 checks
|
||||
player21 checks
|
||||
*** TURN *** [Jc 4c Kc] [7h]
|
||||
player16 checks
|
||||
player17 checks
|
||||
player19 bets $3.50
|
||||
player21 folds
|
||||
player16 folds
|
||||
player17 calls $3.50
|
||||
*** RIVER *** [Jc 4c Kc 7h] [8s]
|
||||
player17 checks
|
||||
player19 has 15 seconds left to act
|
||||
player19 bets $10
|
||||
player17 calls $10
|
||||
*** SHOW DOWN ***
|
||||
player19 shows [4s Tc As Ac] a flush, Ace high
|
||||
player17 mucks
|
||||
player19 wins the pot ($33.25) with a flush, Ace high
|
||||
*** SUMMARY ***
|
||||
Total pot $35 | Rake $1.75
|
||||
Board: [Jc 4c Kc 7h 8s]
|
||||
Seat 1: player16 (small blind) folded on the Turn
|
||||
Seat 2: player17 (big blind) mucked
|
||||
Seat 3: player18 didn't bet (folded)
|
||||
Seat 4: player19 collected ($33.25)
|
||||
Seat 5: play-er26 didn't bet (folded)
|
||||
Seat 6: player21 folded on the Turn
|
||||
Seat 7: player22 didn't bet (folded)
|
||||
Seat 8: player23 didn't bet (folded)
|
||||
Seat 9: player24 (button) didn't bet (folded)
|
||||
|
||||
|
||||
|
||||
Full Tilt Poker Game #6929572212: Table Green (deep) - $0.50/$1 - Pot Limit Omaha Hi - 17:18:40 ET - 2008/06/22
|
||||
Seat 1: player16 ($91.90)
|
||||
Seat 2: player17 ($84.50)
|
||||
Seat 3: player18 ($62.80)
|
||||
Seat 4: player19 ($154.30)
|
||||
Seat 6: player21 ($250.95)
|
||||
Seat 7: player22 ($199)
|
||||
Seat 8: player23 ($168.90)
|
||||
Seat 9: player24 ($265.70)
|
||||
player17 posts the small blind of $0.50
|
||||
player18 posts the big blind of $1
|
||||
The button is in seat #1
|
||||
*** HOLE CARDS ***
|
||||
player19 folds
|
||||
player21 folds
|
||||
player20 adds $50
|
||||
player22 folds
|
||||
player23 folds
|
||||
player24 folds
|
||||
player20 is sitting out
|
||||
player16 raises to $2
|
||||
player17 folds
|
||||
player18 folds
|
||||
Uncalled bet of $1 returned to player16
|
||||
player16 mucks
|
||||
player16 wins the pot ($2.50)
|
||||
*** SUMMARY ***
|
||||
Total pot $2.50 | Rake $0
|
||||
Seat 1: player16 (button) collected ($2.50), mucked
|
||||
Seat 2: player17 (small blind) folded before the Flop
|
||||
Seat 3: player18 (big blind) folded before the Flop
|
||||
Seat 4: player19 didn't bet (folded)
|
||||
Seat 6: player21 didn't bet (folded)
|
||||
Seat 7: player22 didn't bet (folded)
|
||||
Seat 8: player23 didn't bet (folded)
|
||||
Seat 9: player24 didn't bet (folded)
|
||||
|
||||
|
||||
|
||||
Full Tilt Poker Game #6929576743: Table Green (deep) - $0.50/$1 - Pot Limit Omaha Hi - 17:19:03 ET - 2008/06/22
|
||||
Seat 1: player16 ($93.40)
|
||||
Seat 2: player17 ($84)
|
||||
Seat 3: player18 ($61.80)
|
||||
Seat 4: player19 ($154.30)
|
||||
Seat 5: player20 ($50), is sitting out
|
||||
Seat 6: player21 ($250.95)
|
||||
Seat 7: player22 ($199)
|
||||
Seat 8: player23 ($168.90)
|
||||
Seat 9: player24 ($265.70)
|
||||
player18 posts the small blind of $0.50
|
||||
player19 posts the big blind of $1
|
||||
The button is in seat #2
|
||||
*** HOLE CARDS ***
|
||||
player20 has returned
|
||||
player21 calls $1
|
||||
player22 folds
|
||||
player23 calls $1
|
||||
player24 calls $1
|
||||
player16 raises to $4
|
||||
player17 folds
|
||||
player18 folds
|
||||
player19 folds
|
||||
player21 folds
|
||||
player23 folds
|
||||
player17 is sitting out
|
||||
player24 has 15 seconds left to act
|
||||
player24 calls $3
|
||||
*** FLOP *** [Tc 9s 7h]
|
||||
player24 checks
|
||||
player16 has 15 seconds left to act
|
||||
player16 bets $8
|
||||
player24 folds
|
||||
Uncalled bet of $8 returned to player16
|
||||
player16 mucks
|
||||
player16 wins the pot ($10.95)
|
||||
*** SUMMARY ***
|
||||
Total pot $11.50 | Rake $0.55
|
||||
Board: [Tc 9s 7h]
|
||||
Seat 1: player16 collected ($10.95), mucked
|
||||
Seat 2: player17 (button) didn't bet (folded)
|
||||
Seat 3: player18 (small blind) folded before the Flop
|
||||
Seat 4: player19 (big blind) folded before the Flop
|
||||
Seat 5: player20 is sitting out
|
||||
Seat 6: player21 folded before the Flop
|
||||
Seat 7: player22 didn't bet (folded)
|
||||
Seat 8: player23 folded before the Flop
|
||||
Seat 9: player24 folded on the Flop
|
||||
|
||||
|
||||
|
||||
Full Tilt Poker Game #6929587483: Table Green (deep) - $0.50/$1 - Pot Limit Omaha Hi - 17:19:57 ET - 2008/06/22
|
||||
Seat 1: player16 ($100.35)
|
||||
Seat 2: player17 ($84), is sitting out
|
||||
Seat 3: player18 ($61.30)
|
||||
Seat 4: player19 ($153.30)
|
||||
Seat 5: player20 ($50)
|
||||
Seat 6: player21 ($249.95)
|
||||
Seat 7: player22 ($199)
|
||||
Seat 8: player23 ($167.90)
|
||||
Seat 9: player24 ($261.70)
|
||||
player19 posts the small blind of $0.50
|
||||
player20 posts the big blind of $1
|
||||
The button is in seat #3
|
||||
*** HOLE CARDS ***
|
||||
player21 folds
|
||||
player22 folds
|
||||
player21 stands up
|
||||
player23 calls $1
|
||||
player24 calls $1
|
||||
player16 folds
|
||||
player18 folds
|
||||
player19 calls $0.50
|
||||
player20 checks
|
||||
*** FLOP *** [Jd Td 2c]
|
||||
roguern adds $100
|
||||
player19 bets $3
|
||||
player20 folds
|
||||
player23 folds
|
||||
player24 has 15 seconds left to act
|
||||
player24 raises to $11
|
||||
player19 raises to $37
|
||||
player24 raises to $115
|
||||
player19 raises to $152.30, and is all in
|
||||
player24 calls $37.30
|
||||
player19 shows [Jc Jh 7s 5h]
|
||||
player24 shows [Kh Ad 6h Qd]
|
||||
*** TURN *** [Jd Td 2c] [As]
|
||||
*** RIVER *** [Jd Td 2c As] [8s]
|
||||
player19 shows three of a kind, Jacks
|
||||
player24 shows a straight, Ace high
|
||||
player24 wins the pot ($305.60) with a straight, Ace high
|
||||
player19 is sitting out
|
||||
*** SUMMARY ***
|
||||
Total pot $308.60 | Rake $3
|
||||
Board: [Jd Td 2c As 8s]
|
||||
Seat 1: player16 didn't bet (folded)
|
||||
Seat 2: player17 is sitting out
|
||||
Seat 3: player18 (button) didn't bet (folded)
|
||||
Seat 4: player19 (small blind) showed [Jc Jh 7s 5h] and lost with three of a kind, Jacks
|
||||
Seat 5: player20 (big blind) folded on the Flop
|
||||
Seat 6: player21 didn't bet (folded)
|
||||
Seat 7: player22 didn't bet (folded)
|
||||
Seat 8: player23 folded on the Flop
|
||||
Seat 9: player24 showed [Kh Ad 6h Qd] and won ($305.60) with a straight, Ace high
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
Full Tilt Poker Game #6367428246: Table Mountain Mesa - $15/$30 Ante $3 - Limit Stud H/L - 23:47:38 ET - 2008/05/10
|
||||
Seat 1: Player_8 ($446), is sitting out
|
||||
Seat 2: Play er9 ($303.50)
|
||||
Seat 3: P layer10 ($613), is sitting out
|
||||
Seat 4: Player_11 ($164)
|
||||
Seat 5: Player1 2 ($543.50), is sitting out
|
||||
Seat 6: Player13 ($912.50)
|
||||
Seat 7: Player14 ($430), is sitting out
|
||||
Seat 8: Player15 ($531.50)
|
||||
Player15 antes $3
|
||||
Player_11 antes $3
|
||||
Player13 antes $3
|
||||
Play er9 antes $3
|
||||
*** 3RD STREET ***
|
||||
Dealt to Play er9 [2s]
|
||||
Dealt to Player_11 [3c]
|
||||
Dealt to Player13 [8c]
|
||||
Dealt to Player15 [Jc]
|
||||
Play er9 is low with [2s]
|
||||
Play er9 brings in for $5
|
||||
Player_11 folds
|
||||
Player13 completes it to $15
|
||||
Player15 folds
|
||||
Play er9 calls $10
|
||||
*** 4TH STREET ***
|
||||
Dealt to Play er9 [2s] [6c]
|
||||
Dealt to Player13 [8c] [5h]
|
||||
Player13 bets $15
|
||||
Play er9 calls $15
|
||||
*** 5TH STREET ***
|
||||
Dealt to Play er9 [2s 6c] [Ac]
|
||||
Dealt to Player13 [8c 5h] [Ah]
|
||||
Player13 bets $30
|
||||
Play er9 calls $30
|
||||
*** 6TH STREET ***
|
||||
Dealt to Play er9 [2s 6c Ac] [2c]
|
||||
Dealt to Player13 [8c 5h Ah] [Jd]
|
||||
Play er9 bets $30
|
||||
Player13 calls $30
|
||||
*** 7TH STREET ***
|
||||
Play er9 bets $30
|
||||
Player13 calls $30
|
||||
*** SHOW DOWN ***
|
||||
Play er9 shows [5c 4h 2s 6c Ac 2c 2h] three of a kind, Twos, for high and 6,5,4,2,A, for low
|
||||
Player13 mucks
|
||||
Play er9 wins the high pot ($125) with three of a kind, Twos
|
||||
Play er9 wins the low pot ($125) with 6,5,4,2,A
|
||||
*** SUMMARY ***
|
||||
Total pot $252 | Rake $2
|
||||
Seat 1: Player_8 is sitting out
|
||||
Seat 2: Play er9 collected ($250)
|
||||
Seat 3: P layer10 is sitting out
|
||||
Seat 4: Player_11 folded on 3rd St.
|
||||
Seat 5: Player1 2 is sitting out
|
||||
Seat 6: Player13 mucked
|
||||
Seat 7: Player14 is sitting out
|
||||
Seat 8: Player15 folded on 3rd St.
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
This file is outdated!
|
||||
|
||||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: Full Tilt Poker site_id: 1
|
||||
|
||||
From Table sites
|
||||
====================
|
||||
site_name: Full Tilt Poker
|
||||
|
||||
From Table gametypes
|
||||
====================
|
||||
type: category: studhilo limit_type:
|
||||
sb: bb: sbet: bbet:
|
||||
|
||||
From Table hands
|
||||
================
|
||||
site_hand_no: 6367428246 hand_start: 2008-05-11 04:47:38 seat_count: 4
|
||||
|
||||
From Table hands_players
|
||||
========================
|
||||
player_name:Play er9 player_startcash:30350 ante:300 cards:5c 4h 2s 6c Ac 2c 2h winnings:25000 rake:200
|
||||
player_name:Player_11 player_startcash:16400 ante:300 cards:?? ?? 3c ?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:Player13 player_startcash:91250 ante:300 cards:?? ?? 8c 5h Ah Jd ?? winnings:0 rake:0
|
||||
player_name:Player15 player_startcash:53150 ante:300 cards:?? ?? Jc ?? ?? ?? ?? winnings:0 rake:0
|
||||
|
||||
From Table hands_actions
|
||||
========================
|
||||
player_name:Play er9 actionCount:0 street:3 streetActionNo:0 action:blind amount:500
|
||||
player_name:Play er9 actionCount:1 street:3 streetActionNo:1 action:call amount:1000
|
||||
player_name:Play er9 actionCount:2 street:4 streetActionNo:0 action:call amount:1500
|
||||
player_name:Play er9 actionCount:3 street:5 streetActionNo:0 action:call amount:3000
|
||||
player_name:Play er9 actionCount:4 street:6 streetActionNo:0 action:bet amount:3000
|
||||
player_name:Play er9 actionCount:5 street:7 streetActionNo:0 action:bet amount:3000
|
||||
player_name:Player_11 actionCount:0 street:3 streetActionNo:0 action:fold amount:0
|
||||
player_name:Player13 actionCount:0 street:3 streetActionNo:0 action:bet amount:1500
|
||||
player_name:Player13 actionCount:1 street:4 streetActionNo:0 action:bet amount:1500
|
||||
player_name:Player13 actionCount:2 street:5 streetActionNo:0 action:bet amount:3000
|
||||
player_name:Player13 actionCount:3 street:6 streetActionNo:0 action:call amount:3000
|
||||
player_name:Player13 actionCount:4 street:7 streetActionNo:0 action:call amount:3000
|
||||
player_name:Player15 actionCount:0 street:3 streetActionNo:0 action:fold amount:0
|
|
@ -1,48 +0,0 @@
|
|||
This file is outdated!
|
||||
|
||||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: Full Tilt Poker site_id: 1
|
||||
From Table hands
|
||||
================
|
||||
site_hand_no: 6929537410 hand_start: 2008-06-22 22:15:44 seat_count: 9 category: omahahi
|
||||
Board cards: 4s Kc 8s 6s Qc
|
||||
|
||||
From Table hands_players
|
||||
========================
|
||||
player_name:player16 player_startcash:9490 position:BB cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player25 player_startcash:14700 position:6 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player18 player_startcash:6280 position:5 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player19 player_startcash:13655 position:4 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:play-er26 player_startcash:5605 position:3 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player21 player_startcash:25295 position:2 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player22 player_startcash:20000 position:1 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player23 player_startcash:16250 position:Btn cards:Td 5s 3d Js winnings:1140 rake:60
|
||||
player_name:player24 player_startcash:27070 position:SB cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
|
||||
From Table hands_actions
|
||||
========================
|
||||
player_name:player16 actionCount:0 street:Preflop streetActionNo:0 action:blind amount:100
|
||||
player_name:player16 actionCount:1 street:Preflop streetActionNo:1 action:check amount:0
|
||||
player_name:player16 actionCount:2 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player16 actionCount:3 street:Turn streetActionNo:0 action:check amount:0
|
||||
player_name:player16 actionCount:4 street:Turn streetActionNo:1 action:fold amount:0
|
||||
player_name:player25 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player18 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player19 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:play-er26 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player21 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player22 actionCount:0 street:Preflop streetActionNo:0 action:blind amount:100
|
||||
player_name:player22 actionCount:1 street:Preflop streetActionNo:1 action:check amount:0
|
||||
player_name:player22 actionCount:2 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player22 actionCount:3 street:Turn streetActionNo:0 action:check amount:0
|
||||
player_name:player22 actionCount:4 street:Turn streetActionNo:1 action:fold amount:0
|
||||
player_name:player23 actionCount:0 street:Preflop streetActionNo:0 action:call amount:100
|
||||
player_name:player23 actionCount:1 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player23 actionCount:2 street:Turn streetActionNo:0 action:bet amount:400
|
||||
player_name:player23 actionCount:3 street:River streetActionNo:0 action:check amount:0
|
||||
player_name:player24 actionCount:0 street:Preflop streetActionNo:0 action:blind amount:50
|
||||
player_name:player24 actionCount:1 street:Preflop streetActionNo:1 action:call amount:50
|
||||
player_name:player24 actionCount:2 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player24 actionCount:3 street:Turn streetActionNo:0 action:check amount:0
|
||||
player_name:player24 actionCount:4 street:Turn streetActionNo:1 action:call amount:400
|
||||
player_name:player24 actionCount:5 street:River streetActionNo:0 action:check amount:0
|
|
@ -1,47 +0,0 @@
|
|||
This file is outdated!
|
||||
|
||||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: Full Tilt Poker site_id: 1
|
||||
From Table hands
|
||||
================
|
||||
site_hand_no: 6929553738 hand_start: 2008-06-22 22:17:06 seat_count: 9 category: omahahi
|
||||
Board cards: Jc 4c Kc 7h 8s
|
||||
|
||||
From Table hands_players
|
||||
========================
|
||||
player_name:player16 player_startcash:9390 position:SB cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player17 player_startcash:10000 position:BB cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player18 player_startcash:6280 position:6 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player19 player_startcash:13655 position:5 off Btn cards:4s Tc As Ac winnings:3325 rake:175
|
||||
player_name:play-er26 player_startcash:5605 position:4 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player21 player_startcash:25295 position:3 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player22 player_startcash:19900 position:2 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player23 player_startcash:16890 position:1 off Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
player_name:player24 player_startcash:26570 position:Btn cards:?? ?? ?? ?? winnings:0 rake:0
|
||||
|
||||
From Table hands_actions
|
||||
========================
|
||||
player_name:player16 actionCount:0 street:Preflop streetActionNo:0 action:blind amount:50
|
||||
player_name:player16 actionCount:1 street:Preflop streetActionNo:1 action:call amount:150
|
||||
player_name:player16 actionCount:2 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player16 actionCount:3 street:Turn streetActionNo:0 action:check amount:0
|
||||
player_name:player16 actionCount:4 street:Turn streetActionNo:1 action:fold amount:0
|
||||
player_name:player17 actionCount:0 street:Preflop streetActionNo:0 action:blind amount:100
|
||||
player_name:player17 actionCount:1 street:Preflop streetActionNo:1 action:call amount:100
|
||||
player_name:player17 actionCount:2 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player17 actionCount:3 street:Turn streetActionNo:0 action:check amount:0
|
||||
player_name:player17 actionCount:4 street:Turn streetActionNo:1 action:call amount:350
|
||||
player_name:player17 actionCount:5 street:River streetActionNo:0 action:check amount:0
|
||||
player_name:player17 actionCount:6 street:River streetActionNo:1 action:call amount:1000
|
||||
player_name:player18 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player19 actionCount:0 street:Preflop streetActionNo:0 action:bet amount:200
|
||||
player_name:player19 actionCount:1 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player19 actionCount:2 street:Turn streetActionNo:0 action:bet amount:350
|
||||
player_name:player19 actionCount:3 street:River streetActionNo:0 action:bet amount:1000
|
||||
player_name:play-er26 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player21 actionCount:0 street:Preflop streetActionNo:0 action:call amount:200
|
||||
player_name:player21 actionCount:1 street:Flop streetActionNo:0 action:check amount:0
|
||||
player_name:player21 actionCount:2 street:Turn streetActionNo:0 action:fold amount:0
|
||||
player_name:player22 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player23 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
||||
player_name:player24 actionCount:0 street:Preflop streetActionNo:0 action:fold amount:0
|
|
@ -1,68 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Player Flags Utility
|
||||
|
||||
Basic Data
|
||||
==========
|
||||
bigBet: 4 category: holdem limitType: fl name: Player_5 gameType: ring site: PokerStars
|
||||
siteId: 2 gametypeId: 1 playerId: 5 hudDataId: 12
|
||||
|
||||
HUD Raw Hand Counts
|
||||
===================
|
||||
HDs: 1
|
||||
street0VPI: 0
|
||||
street0Aggr: 0
|
||||
street0_3B4BChance: 0
|
||||
street0_3B4BDone: 0
|
||||
|
||||
street1Seen: 1
|
||||
street2Seen: 1
|
||||
street3Seen: 1
|
||||
street4Seen: 0
|
||||
sawShowdown: 1
|
||||
|
||||
street1Aggr: 1
|
||||
street2Aggr: 1
|
||||
street3Aggr: 0
|
||||
street4Aggr: 0
|
||||
|
||||
otherRaisedStreet1: 0
|
||||
otherRaisedStreet2: 1
|
||||
otherRaisedStreet3: 1
|
||||
otherRaisedStreet4: 0
|
||||
foldToOtherRaisedStreet1: 0
|
||||
foldToOtherRaisedStreet2: 0
|
||||
foldToOtherRaisedStreet3: 0
|
||||
foldToOtherRaisedStreet4: 0
|
||||
|
||||
wonWhenSeenStreet1: 0.0
|
||||
wonAtSD: 0.0
|
||||
stealAttemptChance: 0
|
||||
stealAttempted: 0
|
||||
foldBbToStealChance: 0
|
||||
foldedBbToSteal: 0
|
||||
foldSbToStealChance: 0
|
||||
foldedSbToSteal: 0
|
||||
street1CBChance: 0
|
||||
street1CBDone: 0
|
||||
street2CBChance: 0
|
||||
street2CBDone: 0
|
||||
street3CBChance: 0
|
||||
street3CBDone: 0
|
||||
street4CBChance: 0
|
||||
street4CBDone: 0
|
||||
foldToStreet1CBChance: 0
|
||||
foldToStreet1CBDone: 0
|
||||
foldToStreet2CBChance: 0
|
||||
foldToStreet2CBDone: 0
|
||||
foldToStreet3CBChance: 0
|
||||
foldToStreet3CBDone: 0
|
||||
foldToStreet4CBChance: 0
|
||||
foldToStreet4CBDone: 0
|
||||
totalProfit:
|
||||
street1CheckCallRaiseChance:
|
||||
street1CheckCallRaiseDone:
|
||||
street2CheckCallRaiseChance:
|
||||
street2CheckCallRaiseDone:
|
||||
street3CheckCallRaiseChance:
|
||||
street3CheckCallRaiseDone:
|
||||
street4CheckCallRaiseChance: 0
|
||||
street4CheckCallRaiseDone: 0
|
|
@ -1,68 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Player Flags Utility
|
||||
|
||||
Basic Data
|
||||
==========
|
||||
bigBet: 50 category: holdem limitType: fl name: player3 gameType: ring site: PokerStars
|
||||
siteId: 2 gametypeId: 2 playerId: 11 hudDataId: 22
|
||||
|
||||
HUD Raw Hand Counts
|
||||
===================
|
||||
HDs: 1
|
||||
street0VPI: 1
|
||||
street0Aggr: 1
|
||||
street0_3B4BChance: 1
|
||||
street0_3B4BDone: 1
|
||||
|
||||
street1Seen: 1
|
||||
street2Seen: 1
|
||||
street3Seen: 1
|
||||
street4Seen: 0
|
||||
sawShowdown: 1
|
||||
|
||||
street1Aggr: 1
|
||||
street2Aggr: 0
|
||||
street3Aggr: 0
|
||||
street4Aggr: 0
|
||||
|
||||
otherRaisedStreet1: 0
|
||||
otherRaisedStreet2:
|
||||
otherRaisedStreet3:
|
||||
otherRaisedStreet4: 0
|
||||
foldToOtherRaisedStreet1: 0
|
||||
foldToOtherRaisedStreet2: 0
|
||||
foldToOtherRaisedStreet3: 0
|
||||
foldToOtherRaisedStreet4: 0
|
||||
|
||||
wonWhenSeenStreet1: 0.0
|
||||
wonAtSD: 0.0
|
||||
stealAttemptChance: 0
|
||||
stealAttempted: 0
|
||||
foldBbToStealChance: 0
|
||||
foldedBbToSteal: 0
|
||||
foldSbToStealChance: 0
|
||||
foldedSbToSteal: 0
|
||||
street1CBChance: 1
|
||||
street1CBDone: 1
|
||||
street2CBChance: 0
|
||||
street2CBDone: 0
|
||||
street3CBChance: 0
|
||||
street3CBDone: 0
|
||||
street4CBChance: 0
|
||||
street4CBDone: 0
|
||||
foldToStreet1CBChance: 0
|
||||
foldToStreet1CBDone: 0
|
||||
foldToStreet2CBChance: 0
|
||||
foldToStreet2CBDone: 0
|
||||
foldToStreet3CBChance: 0
|
||||
foldToStreet3CBDone: 0
|
||||
foldToStreet4CBChance: 0
|
||||
foldToStreet4CBDone: 0
|
||||
totalProfit:
|
||||
street1CheckCallRaiseChance: 0
|
||||
street1CheckCallRaiseDone: 0
|
||||
street2CheckCallRaiseChance: 0
|
||||
street2CheckCallRaiseDone: 0
|
||||
street3CheckCallRaiseChance: 0
|
||||
street3CheckCallRaiseDone: 0
|
||||
street4CheckCallRaiseChance: 0
|
||||
street4CheckCallRaiseDone: 0
|
|
@ -1,68 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Player Flags Utility
|
||||
|
||||
Basic Data
|
||||
==========
|
||||
bigBet: 4 category: holdem limitType: fl name: Player_1 gameType: ring site: PokerStars
|
||||
siteId: 2 gametypeId: 1 playerId: 1 hudDataId: 8
|
||||
|
||||
HUD Raw Hand Counts
|
||||
===================
|
||||
HDs: 2
|
||||
street0VPI: 0
|
||||
street0Aggr: 0
|
||||
street0_3B4BChance: 0
|
||||
street0_3B4BDone: 0
|
||||
|
||||
street1Seen: 0
|
||||
street2Seen: 0
|
||||
street3Seen: 0
|
||||
street4Seen: 0
|
||||
sawShowdown: 0
|
||||
|
||||
street1Aggr: 0
|
||||
street2Aggr: 0
|
||||
street3Aggr: 0
|
||||
street4Aggr: 0
|
||||
|
||||
otherRaisedStreet1: 0
|
||||
otherRaisedStreet2: 0
|
||||
otherRaisedStreet3: 0
|
||||
otherRaisedStreet4: 0
|
||||
foldToOtherRaisedStreet1: 0
|
||||
foldToOtherRaisedStreet2: 0
|
||||
foldToOtherRaisedStreet3: 0
|
||||
foldToOtherRaisedStreet4: 0
|
||||
|
||||
wonWhenSeenStreet1: 0.0
|
||||
wonAtSD: 0.0
|
||||
stealAttemptChance: 0
|
||||
stealAttempted: 0
|
||||
foldBbToStealChance: 0
|
||||
foldedBbToSteal: 0
|
||||
foldSbToStealChance: 0
|
||||
foldedSbToSteal: 0
|
||||
street1CBChance: 0
|
||||
street1CBDone: 0
|
||||
street2CBChance: 0
|
||||
street2CBDone: 0
|
||||
street3CBChance: 0
|
||||
street3CBDone: 0
|
||||
street4CBChance: 0
|
||||
street4CBDone: 0
|
||||
foldToStreet1CBChance: 0
|
||||
foldToStreet1CBDone: 0
|
||||
foldToStreet2CBChance: 0
|
||||
foldToStreet2CBDone: 0
|
||||
foldToStreet3CBChance: 0
|
||||
foldToStreet3CBDone: 0
|
||||
foldToStreet4CBChance: 0
|
||||
foldToStreet4CBDone: 0
|
||||
totalProfit: 0
|
||||
street1CheckCallRaiseChance: 0
|
||||
street1CheckCallRaiseDone: 0
|
||||
street2CheckCallRaiseChance: 0
|
||||
street2CheckCallRaiseDone: 0
|
||||
street3CheckCallRaiseChance: 0
|
||||
street3CheckCallRaiseDone: 0
|
||||
street4CheckCallRaiseChance: 0
|
||||
street4CheckCallRaiseDone: 0
|
|
@ -1,68 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Player Flags Utility
|
||||
|
||||
Basic Data
|
||||
==========
|
||||
bigBet: 20 category: studhilo limitType: fl name: br1an gameType: ring site: PokerStars
|
||||
siteId: 2 gametypeId: 3 playerId: 21 hudDataId: 32
|
||||
|
||||
HUD Raw Hand Counts
|
||||
===================
|
||||
HDs: 1
|
||||
street0VPI: 0
|
||||
street0Aggr: 0
|
||||
street0_3B4BChance: 0
|
||||
street0_3B4BDone: 0
|
||||
|
||||
street1Seen: 1
|
||||
street2Seen: 1
|
||||
street3Seen: 1
|
||||
street4Seen: 1
|
||||
sawShowdown: 1
|
||||
|
||||
street1Aggr: 0
|
||||
street2Aggr: 0
|
||||
street3Aggr: 0
|
||||
street4Aggr: 0
|
||||
|
||||
otherRaisedStreet1: 0
|
||||
otherRaisedStreet2: 1
|
||||
otherRaisedStreet3: 0
|
||||
otherRaisedStreet4: 1
|
||||
foldToOtherRaisedStreet1: 0
|
||||
foldToOtherRaisedStreet2: 0
|
||||
foldToOtherRaisedStreet3: 0
|
||||
foldToOtherRaisedStreet4: 0
|
||||
|
||||
wonWhenSeenStreet1: 0.0
|
||||
wonAtSD: 0.0
|
||||
stealAttemptChance: 0
|
||||
stealAttempted: 0
|
||||
foldBbToStealChance: 0
|
||||
foldedBbToSteal: 0
|
||||
foldSbToStealChance: 0
|
||||
foldedSbToSteal: 0
|
||||
street1CBChance: 0
|
||||
street1CBDone: 0
|
||||
street2CBChance: 0
|
||||
street2CBDone: 0
|
||||
street3CBChance: 0
|
||||
street3CBDone: 0
|
||||
street4CBChance: 0
|
||||
street4CBDone: 0
|
||||
foldToStreet1CBChance: 0
|
||||
foldToStreet1CBDone: 0
|
||||
foldToStreet2CBChance: 0
|
||||
foldToStreet2CBDone: 0
|
||||
foldToStreet3CBChance: 0
|
||||
foldToStreet3CBDone: 0
|
||||
foldToStreet4CBChance: 0
|
||||
foldToStreet4CBDone: 0
|
||||
totalProfit: -0.47
|
||||
street1CheckCallRaiseChance: 0
|
||||
street1CheckCallRaiseDone: 0
|
||||
street2CheckCallRaiseChance: 0
|
||||
street2CheckCallRaiseDone: 0
|
||||
street3CheckCallRaiseChance: 0
|
||||
street3CheckCallRaiseDone: 0
|
||||
street4CheckCallRaiseChance: 1
|
||||
street4CheckCallRaiseDone: 0
|
|
@ -1,169 +0,0 @@
|
|||
PokerStars Game #14519394979: Hold'em Limit ($0.02/$0.04) - 2008/01/13 - 00:22:15 (ET)
|
||||
Table 'Merope' 10-max Seat #1 is the button
|
||||
Seat 1: Player_1 ($0.75 in chips)
|
||||
Seat 3: Player_2 ($0.59 in chips)
|
||||
Seat 4: Player_3 ($1.47 in chips)
|
||||
Seat 6: Player_4 ($1.98 in chips)
|
||||
Seat 7: Player_5 ($1.22 in chips)
|
||||
Seat 8: Player_6 ($0.48 in chips)
|
||||
Seat 9: Player_7 ($1.39 in chips)
|
||||
Player_2: posts small blind $0.01
|
||||
Player_3: posts big blind $0.02
|
||||
*** HOLE CARDS ***
|
||||
Dealt to Player_7 [Ts Jh]
|
||||
Player_4: raises $0.02 to $0.04
|
||||
Player_5: folds
|
||||
Player_6: folds
|
||||
Player_7: folds
|
||||
Player_1: calls $0.04
|
||||
Player_2: calls $0.03
|
||||
Player_3: folds
|
||||
*** FLOP *** [Qd Th Js]
|
||||
Player_2: checks
|
||||
Player_4: bets $0.02
|
||||
Player_1: calls $0.02
|
||||
Player_2: calls $0.02
|
||||
*** TURN *** [Qd Th Js] [2s]
|
||||
Player_2: checks
|
||||
Player_4: bets $0.04
|
||||
Player_1: calls $0.04
|
||||
Player_2: calls $0.04
|
||||
*** RIVER *** [Qd Th Js 2s] [7s]
|
||||
Player_2: checks
|
||||
Player_4: bets $0.04
|
||||
Player_1: folds
|
||||
Player_2: folds
|
||||
Player_4 collected $0.31 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $0.32 | Rake $0.01
|
||||
Board [Qd Th Js 2s 7s]
|
||||
Seat 1: Player_1 (button) folded on the River
|
||||
Seat 3: Player_2 (small blind) folded on the River
|
||||
Seat 4: Player_3 (big blind) folded before Flop
|
||||
Seat 6: Player_4 collected ($0.31)
|
||||
Seat 7: Player_5 folded before Flop (didn't bet)
|
||||
Seat 8: Player_6 folded before Flop (didn't bet)
|
||||
Seat 9: Player_7 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #14519420999: Hold'em Limit ($0.02/$0.04) - 2008/01/13 - 00:23:43 (ET)
|
||||
Table 'Merope' 10-max Seat #4 is the button
|
||||
Seat 1: Player_1 ($0.65 in chips)
|
||||
Seat 3: Player_2 ($0.49 in chips)
|
||||
Seat 4: Player_3 ($1.79 in chips)
|
||||
Seat 6: Player_4 ($2.05 in chips)
|
||||
Seat 7: Player_5 ($1.18 in chips)
|
||||
Seat 8: Player_6 ($0.34 in chips)
|
||||
Seat 9: Player_7 ($1.35 in chips)
|
||||
wakked13 will be allowed to play after the button
|
||||
Player_4: posts small blind $0.01
|
||||
Player_5: posts big blind $0.02
|
||||
*** HOLE CARDS ***
|
||||
Dealt to Player_7 [8d 5d]
|
||||
Player_6 said, "vn"
|
||||
Player_6: folds
|
||||
Player_7: folds
|
||||
Player_1: folds
|
||||
Player_2: calls $0.02
|
||||
Player_3: folds
|
||||
Player_4: calls $0.01
|
||||
Player_5: checks
|
||||
*** FLOP *** [Th Jd 3c]
|
||||
Player_3 said, "ty"
|
||||
Player_4: checks
|
||||
Player_5: bets $0.02
|
||||
Player_2: calls $0.02
|
||||
Player_4: calls $0.02
|
||||
*** TURN *** [Th Jd 3c] [7c]
|
||||
Player_4: checks
|
||||
Player_5: bets $0.04
|
||||
Player_2: raises $0.04 to $0.08
|
||||
Player_4: folds
|
||||
Player_5: calls $0.04
|
||||
*** RIVER *** [Th Jd 3c 7c] [4s]
|
||||
Player_5: checks
|
||||
Player_2: bets $0.04
|
||||
Player_5: calls $0.04
|
||||
*** SHOW DOWN ***
|
||||
Player_2: shows [8s 9s] (a straight, Seven to Jack)
|
||||
Player_5: mucks hand
|
||||
Player_2 collected $0.35 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $0.36 | Rake $0.01
|
||||
Board [Th Jd 3c 7c 4s]
|
||||
Seat 1: Player_1 folded before Flop (didn't bet)
|
||||
Seat 3: Player_2 showed [8s 9s] and won ($0.35) with a straight, Seven to Jack
|
||||
Seat 4: Player_3 (button) folded before Flop (didn't bet)
|
||||
Seat 6: Player_4 (small blind) folded on the Turn
|
||||
Seat 7: Player_5 (big blind) mucked [Qh Js]
|
||||
Seat 8: Player_6 folded before Flop (didn't bet)
|
||||
Seat 9: Player_7 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #14519433154: Hold'em Limit ($0.02/$0.04) - 2008/01/13 - 00:24:25 (ET)
|
||||
Table 'Merope' 10-max Seat #6 is the button
|
||||
Seat 1: Player_1 ($0.65 in chips)
|
||||
Seat 3: Player_2 ($0.68 in chips)
|
||||
Seat 4: Player_3 ($1.79 in chips)
|
||||
Seat 6: Player_4 ($2.01 in chips)
|
||||
Seat 7: Player_5 ($1.02 in chips)
|
||||
Seat 8: Player_6 ($0.34 in chips)
|
||||
Seat 9: Player_7 ($1.35 in chips)
|
||||
Player_5: posts small blind $0.01
|
||||
Player_6: posts big blind $0.02
|
||||
wakked13: sits out
|
||||
*** HOLE CARDS ***
|
||||
Dealt to Player_7 [7c Jh]
|
||||
Player_7: folds
|
||||
Player_1: folds
|
||||
Player_2: folds
|
||||
Player_3: calls $0.02
|
||||
Player_4: calls $0.02
|
||||
Player_5: raises $0.02 to $0.04
|
||||
Player_6: calls $0.02
|
||||
Player_3: calls $0.02
|
||||
Player_4: calls $0.02
|
||||
*** FLOP *** [4h 9s Ad]
|
||||
Player_5: checks
|
||||
Player_6: checks
|
||||
Player_3: bets $0.02
|
||||
Player_4: raises $0.02 to $0.04
|
||||
Player_5: folds
|
||||
Player_6: folds
|
||||
Player_3: raises $0.02 to $0.06
|
||||
Player_4: raises $0.02 to $0.08
|
||||
Betting is capped
|
||||
Player_3: calls $0.02
|
||||
*** TURN *** [4h 9s Ad] [Qc]
|
||||
Player_3: bets $0.04
|
||||
Player_4: raises $0.04 to $0.08
|
||||
Player_3: raises $0.04 to $0.12
|
||||
Player_4: raises $0.04 to $0.16
|
||||
Betting is capped
|
||||
Player_3: calls $0.04
|
||||
*** RIVER *** [4h 9s Ad Qc] [Ks]
|
||||
Player_3: bets $0.04
|
||||
Player_4: raises $0.04 to $0.08
|
||||
Player_3: raises $0.04 to $0.12
|
||||
Player_4: raises $0.04 to $0.16
|
||||
Betting is capped
|
||||
Player_3: calls $0.04
|
||||
*** SHOW DOWN ***
|
||||
Player_4: shows [Ac Td] (a pair of Aces)
|
||||
Player_3: shows [Ah 9d] (two pair, Aces and Nines)
|
||||
Player_3 collected $0.92 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $0.96 | Rake $0.04
|
||||
Board [4h 9s Ad Qc Ks]
|
||||
Seat 1: Player_1 folded before Flop (didn't bet)
|
||||
Seat 3: Player_2 folded before Flop (didn't bet)
|
||||
Seat 4: Player_3 showed [Ah 9d] and won ($0.92) with two pair, Aces and Nines
|
||||
Seat 6: Player_4 (button) showed [Ac Td] and lost with a pair of Aces
|
||||
Seat 7: Player_5 (small blind) folded on the Flop
|
||||
Seat 8: Player_6 (big blind) folded on the Flop
|
||||
Seat 9: Player_7 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
|
@ -1,62 +0,0 @@
|
|||
PokerStars Game #19546605871: Hold'em Limit ($0.25/$0.50) - 2008/08/11 - 20:15:41 (ET)
|
||||
Table 'Pyxis' 10-max Seat #1 is the button
|
||||
Seat 1: player10 ($7.75 in chips)
|
||||
Seat 2: player1 ($11.55 in chips)
|
||||
Seat 3: player2 ($8.25 in chips)
|
||||
Seat 4: player3 ($0.90 in chips)
|
||||
Seat 5: player4 ($10003.50 in chips)
|
||||
Seat 6: player5 ($13.50 in chips)
|
||||
Seat 7: player6 ($8 in chips)
|
||||
Seat 8: player7 ($11.80 in chips)
|
||||
Seat 9: player8 ($11.05 in chips)
|
||||
Seat 10: player9 ($11.85 in chips)
|
||||
player1: posts small blind $0.10
|
||||
player1 said, "little holy water on the river lol"
|
||||
player2: posts big blind $0.25
|
||||
*** HOLE CARDS ***
|
||||
Dealt to player6 [Ad Ts]
|
||||
player3: calls $0.25
|
||||
player4: folds
|
||||
player5: raises $0.25 to $0.50
|
||||
player6: calls $0.50
|
||||
player7: folds
|
||||
player8: folds
|
||||
player9: folds
|
||||
player10: folds
|
||||
player1: folds
|
||||
player2: folds
|
||||
player3: raises $0.25 to $0.75
|
||||
player5: calls $0.25
|
||||
player6: calls $0.25
|
||||
*** FLOP *** [Js 5d 4c]
|
||||
player3: bets $0.15 and is all-in
|
||||
player5: calls $0.15
|
||||
player6: calls $0.15
|
||||
*** TURN *** [Js 5d 4c] [4s]
|
||||
player5: bets $0.50
|
||||
player6: calls $0.50
|
||||
*** RIVER *** [Js 5d 4c 4s] [6d]
|
||||
player5: bets $0.50
|
||||
player6: calls $0.50
|
||||
*** SHOW DOWN ***
|
||||
player5: shows [Qc Ac] (a pair of Fours)
|
||||
player6: mucks hand
|
||||
player5 collected $1.90 from side pot
|
||||
player3: shows [9c 7c] (a pair of Fours - lower kicker)
|
||||
player5 collected $2.95 from main pot
|
||||
*** SUMMARY ***
|
||||
Total pot $5.05 Main pot $2.95. Side pot $1.90. | Rake $0.20
|
||||
Board [Js 5d 4c 4s 6d]
|
||||
Seat 1: player10 (button) folded before Flop (didn't bet)
|
||||
Seat 2: player1 (small blind) folded before Flop
|
||||
Seat 3: player2 (big blind) folded before Flop
|
||||
Seat 4: player3 showed [9c 7c] and lost with a pair of Fours
|
||||
Seat 5: player4 folded before Flop (didn't bet)
|
||||
Seat 6: player5 showed [Qc Ac] and won ($4.85) with a pair of Fours
|
||||
Seat 7: player6 mucked [Ad Ts]
|
||||
Seat 8: player7 folded before Flop (didn't bet)
|
||||
Seat 9: player8 folded before Flop (didn't bet)
|
||||
Seat 10: player9 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
PokerStars Game #19546637866: Hold'em Limit ($0.25/$0.50) - 2008/08/11 - 20:17:04 (ET)
|
||||
Table 'Pyxis' 10-max Seat #2 is the button
|
||||
Seat 1: player1 ($7.75 in chips)
|
||||
Seat 2: player2 ($11.45 in chips)
|
||||
Seat 5: player3 ($10003.50 in chips)
|
||||
Seat 6: player4 ($16.45 in chips)
|
||||
Seat 7: player5 ($6.10 in chips)
|
||||
Seat 8: player6 ($11.80 in chips)
|
||||
Seat 9: player7 ($11.05 in chips)
|
||||
Seat 10: player8 ($11.85 in chips)
|
||||
player9 leaves the table
|
||||
player10: is sitting out
|
||||
player10 leaves the table
|
||||
player3: posts small blind $0.10
|
||||
player4: posts big blind $0.25
|
||||
*** HOLE CARDS ***
|
||||
Dealt to player5 [Jh 5d]
|
||||
Mac Fun K joins the table at seat #4
|
||||
player5: folds
|
||||
player6: folds
|
||||
player7: folds
|
||||
player8: folds
|
||||
player1: raises $0.25 to $0.50
|
||||
player2: folds
|
||||
player3: folds
|
||||
player4: folds
|
||||
Uncalled bet ($0.25) returned to player1
|
||||
player1 collected $0.60 from pot
|
||||
player1: doesn't show hand
|
||||
*** SUMMARY ***
|
||||
Total pot $0.60 | Rake $0
|
||||
Seat 1: player1 collected ($0.60)
|
||||
Seat 2: player2 (button) folded before Flop (didn't bet)
|
||||
Seat 5: player3 (small blind) folded before Flop
|
||||
Seat 6: player4 (big blind) folded before Flop
|
||||
Seat 7: player5 folded before Flop (didn't bet)
|
||||
Seat 8: player6 folded before Flop (didn't bet)
|
||||
Seat 9: player7 folded before Flop (didn't bet)
|
||||
Seat 10: player8 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
|
@ -1,130 +0,0 @@
|
|||
PokerStars Game #15043388146: 7 Card Stud Hi/Lo Limit ($0.10/$0.20) - 2008/02/03 - 22:04:15 (ET)
|
||||
Table 'Lydia' 8-max
|
||||
Seat 2: olimpicon99 ($5.31 in chips)
|
||||
Seat 4: PokerPig55 ($1.58 in chips)
|
||||
Seat 5: VISTA GIRL ($0.83 in chips)
|
||||
Seat 6: br1an ($5.10 in chips)
|
||||
Seat 7: steffen780 ($4 in chips)
|
||||
Seat 8: willowdale ($3.92 in chips)
|
||||
olimpicon99: posts the ante $0.02
|
||||
PokerPig55: posts the ante $0.02
|
||||
VISTA GIRL: posts the ante $0.02
|
||||
br1an: posts the ante $0.02
|
||||
steffen780: posts the ante $0.02
|
||||
willowdale: posts the ante $0.02
|
||||
*** 3rd STREET ***
|
||||
Dealt to olimpicon99 [8c]
|
||||
Dealt to PokerPig55 [Kh]
|
||||
Dealt to VISTA GIRL [8h]
|
||||
Dealt to br1an [2d]
|
||||
Dealt to steffen780 [Kc 9h 9c]
|
||||
Dealt to willowdale [5s]
|
||||
br1an: brings in for $0.05
|
||||
steffen780: calls $0.05
|
||||
willowdale: calls $0.05
|
||||
olimpicon99: folds
|
||||
olimpicon99 leaves the table
|
||||
PokerPig55: folds
|
||||
VISTA GIRL: folds
|
||||
*** 4th STREET ***
|
||||
Dealt to br1an [2d] [Qh]
|
||||
Dealt to steffen780 [Kc 9h 9c] [5c]
|
||||
Dealt to willowdale [5s] [4s]
|
||||
br1an: checks
|
||||
steffen780: checks
|
||||
willowdale: checks
|
||||
*** 5th STREET ***
|
||||
Dealt to br1an [2d Qh] [6d]
|
||||
Dealt to steffen780 [Kc 9h 9c 5c] [8s]
|
||||
Dealt to willowdale [5s 4s] [Ad]
|
||||
willowdale: bets $0.20
|
||||
br1an: calls $0.20
|
||||
steffen780: folds
|
||||
*** 6th STREET ***
|
||||
Dealt to br1an [2d Qh 6d] [6h]
|
||||
Dealt to willowdale [5s 4s Ad] [5h]
|
||||
br1an: checks
|
||||
willowdale: checks
|
||||
*** RIVER ***
|
||||
br1an: checks
|
||||
willowdale: bets $0.20
|
||||
br1an: calls $0.20
|
||||
*** SHOW DOWN ***
|
||||
willowdale: shows [3s 4d 5s 4s Ad 5h 2c] (HI: a straight, Ace to Five; LO: 5,4,3,2,A)
|
||||
br1an: shows [4c 7d 2d Qh 6d 6h 2h] (HI: two pair, Sixes and Deuces)
|
||||
willowdale collected $0.51 from pot
|
||||
willowdale collected $0.51 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $1.07 | Rake $0.05
|
||||
Seat 2: olimpicon99 folded on the 3rd Street (didn't bet)
|
||||
Seat 4: PokerPig55 folded on the 3rd Street (didn't bet)
|
||||
Seat 5: VISTA GIRL folded on the 3rd Street (didn't bet)
|
||||
Seat 6: br1an showed [4c 7d 2d Qh 6d 6h 2h] and lost with HI: two pair, Sixes and Deuces
|
||||
Seat 7: steffen780 folded on the 5th Street
|
||||
Seat 8: willowdale showed [3s 4d 5s 4s Ad 5h 2c] and won ($1.02) with HI: a straight, Ace to Five; LO: 5,4,3,2,A
|
||||
|
||||
|
||||
|
||||
PokerStars Game #20711747191: Razz Limit ($1/$2) - 2008/09/26 14:36:50 ET
|
||||
Table 'Siwa III' 8-max
|
||||
Seat 2: dainmat ($63.15 in chips)
|
||||
Seat 3: fnJ's ($30.75 in chips)
|
||||
Seat 4: ambythegreat ($24.90 in chips)
|
||||
Seat 5: jt studd ($39.90 in chips)
|
||||
Seat 6: KyleHruby ($11.55 in chips)
|
||||
Seat 7: nutOmatic ($71.30 in chips)
|
||||
dainmat: posts the ante $0.10
|
||||
fnJ's: posts the ante $0.10
|
||||
ambythegreat: posts the ante $0.10
|
||||
jt studd: posts the ante $0.10
|
||||
KyleHruby: posts the ante $0.10
|
||||
nutOmatic: posts the ante $0.10
|
||||
*** 3rd STREET ***
|
||||
Dealt to dainmat [Ts]
|
||||
Dealt to fnJ's [3s]
|
||||
Dealt to ambythegreat [5h]
|
||||
Dealt to jt studd [Ad]
|
||||
Dealt to KyleHruby [As]
|
||||
Dealt to nutOmatic [6d Kd Th]
|
||||
dainmat: brings in for $0.50
|
||||
fnJ's: calls $0.50
|
||||
ambythegreat: raises $0.50 to $1
|
||||
garnishgut joins the table at seat #1
|
||||
jt studd: folds
|
||||
KyleHruby: folds
|
||||
nutOmatic: folds
|
||||
dainmat: folds
|
||||
fnJ's: calls $0.50
|
||||
*** 4th STREET ***
|
||||
Dealt to fnJ's [3s] [6h]
|
||||
Dealt to ambythegreat [5h] [4c]
|
||||
ambythegreat: bets $1
|
||||
fnJ's: calls $1
|
||||
*** 5th STREET ***
|
||||
Dealt to fnJ's [3s 6h] [2h]
|
||||
Dealt to ambythegreat [5h 4c] [Kh]
|
||||
fnJ's: bets $2
|
||||
ambythegreat: calls $2
|
||||
*** 6th STREET ***
|
||||
Dealt to fnJ's [3s 6h 2h] [2c]
|
||||
Dealt to ambythegreat [5h 4c Kh] [5s]
|
||||
fnJ's: bets $2
|
||||
ambythegreat: calls $2
|
||||
*** RIVER ***
|
||||
fnJ's: bets $2
|
||||
ambythegreat: calls $2
|
||||
*** SHOW DOWN ***
|
||||
fnJ's: shows [9d 5c 3s 6h 2h 2c 4h] (Lo: 6,5,4,3,2)
|
||||
ambythegreat: mucks hand
|
||||
fnJ's collected $16.35 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $17.10 | Rake $0.75
|
||||
Seat 2: dainmat folded on the 3rd Street
|
||||
Seat 3: fnJ's showed [9d 5c 3s 6h 2h 2c 4h] and won ($16.35) with Lo: 6,5,4,3,2
|
||||
Seat 4: ambythegreat mucked [6s 7h 5h 4c Kh 5s Jc]
|
||||
Seat 5: jt studd folded on the 3rd Street (didn't bet)
|
||||
Seat 6: KyleHruby folded on the 3rd Street (didn't bet)
|
||||
Seat 7: nutOmatic folded on the 3rd Street (didn't bet)
|
||||
|
||||
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: PokerStars siteId: 2
|
||||
|
||||
From Table Hands
|
||||
================
|
||||
handId: 1 tableName: Merope siteHandNo: 14519394979 gametypeId: 1 handStart: 2008-01-13 05:22:15 seats: 7 maxSeats: 10
|
||||
|
||||
From Table Gametypes
|
||||
====================
|
||||
type: ring base: hold category: holdem limitType: fl hiLo: h
|
||||
sb: 1 bb: 2 sbet: 2 bbet: 4
|
||||
|
||||
From Table BoardCards
|
||||
=====================
|
||||
Board cards: Qd Th Js 2s 7s
|
||||
|
||||
From Table HandsPlayers
|
||||
=======================
|
||||
playerName:Player_1 playerStartcash:75 position:Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_2 playerStartcash:59 position:SB cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_3 playerStartcash:147 position:BB cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_4 playerStartcash:198 position:4 off Btn cards:?? ?? winnings:31 rake:1
|
||||
playerName:Player_5 playerStartcash:122 position:3 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_6 playerStartcash:48 position:2 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_7 playerStartcash:139 position:1 off Btn cards:Ts Jh winnings:0 rake:0
|
||||
|
||||
From Table HandsActions
|
||||
=======================
|
||||
playerName:Player_1 street:Preflop streetActionNo:6 action:call amount:4
|
||||
playerName:Player_1 street:Flop streetActionNo:2 action:call amount:2
|
||||
playerName:Player_1 street:Turn streetActionNo:2 action:call amount:4
|
||||
playerName:Player_1 street:River streetActionNo:2 action:fold amount:0
|
||||
playerName:Player_2 street:Preflop streetActionNo:0 action:blind amount:1
|
||||
playerName:Player_2 street:Preflop streetActionNo:7 action:call amount:3
|
||||
playerName:Player_2 street:Flop streetActionNo:0 action:check amount:0
|
||||
playerName:Player_2 street:Flop streetActionNo:3 action:call amount:2
|
||||
playerName:Player_2 street:Turn streetActionNo:0 action:check amount:0
|
||||
playerName:Player_2 street:Turn streetActionNo:3 action:call amount:4
|
||||
playerName:Player_2 street:River streetActionNo:0 action:check amount:0
|
||||
playerName:Player_2 street:River streetActionNo:3 action:fold amount:0
|
||||
playerName:Player_3 street:Preflop streetActionNo:1 action:blind amount:2
|
||||
playerName:Player_3 street:Preflop streetActionNo:8 action:fold amount:0
|
||||
playerName:Player_4 street:Preflop streetActionNo:2 action:bet amount:4
|
||||
playerName:Player_4 street:Flop streetActionNo:1 action:bet amount:2
|
||||
playerName:Player_4 street:Turn streetActionNo:1 action:bet amount:4
|
||||
playerName:Player_4 street:River streetActionNo:1 action:bet amount:4
|
||||
playerName:Player_5 street:Preflop streetActionNo:3 action:fold amount:0
|
||||
playerName:Player_6 street:Preflop streetActionNo:4 action:fold amount:0
|
||||
playerName:Player_7 street:Preflop streetActionNo:5 action:fold amount:0
|
|
@ -1,49 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: PokerStars siteId: 2
|
||||
|
||||
From Table Hands
|
||||
================
|
||||
handId: 2 tableName: Merope siteHandNo: 14519420999 gametypeId: 1 handStart: 2008-01-13 05:23:43 seats: 7 maxSeats: 10
|
||||
|
||||
From Table Gametypes
|
||||
====================
|
||||
type: ring base: hold category: holdem limitType: fl hiLo: h
|
||||
sb: 1 bb: 2 sbet: 2 bbet: 4
|
||||
|
||||
From Table BoardCards
|
||||
=====================
|
||||
Board cards: Th Jd 3c 7c 4s
|
||||
|
||||
From Table HandsPlayers
|
||||
=======================
|
||||
playerName:Player_1 playerStartcash:65 position:2 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_2 playerStartcash:49 position:1 off Btn cards:8s 9s winnings:35 rake:1
|
||||
playerName:Player_3 playerStartcash:179 position:Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_4 playerStartcash:205 position:SB cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_5 playerStartcash:118 position:BB cards:Qh Js winnings:0 rake:0
|
||||
playerName:Player_6 playerStartcash:34 position:4 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_7 playerStartcash:135 position:3 off Btn cards:8d 5d winnings:0 rake:0
|
||||
|
||||
From Table HandsActions
|
||||
=======================
|
||||
playerName:Player_1 street:Preflop streetActionNo:4 action:fold amount:0
|
||||
playerName:Player_2 street:Preflop streetActionNo:5 action:call amount:2
|
||||
playerName:Player_2 street:Flop streetActionNo:2 action:call amount:2
|
||||
playerName:Player_2 street:Turn streetActionNo:2 action:bet amount:8
|
||||
playerName:Player_2 street:River streetActionNo:1 action:bet amount:4
|
||||
playerName:Player_3 street:Preflop streetActionNo:6 action:fold amount:0
|
||||
playerName:Player_4 street:Preflop streetActionNo:0 action:blind amount:1
|
||||
playerName:Player_4 street:Preflop streetActionNo:7 action:call amount:1
|
||||
playerName:Player_4 street:Flop streetActionNo:0 action:check amount:0
|
||||
playerName:Player_4 street:Flop streetActionNo:3 action:call amount:2
|
||||
playerName:Player_4 street:Turn streetActionNo:0 action:check amount:0
|
||||
playerName:Player_4 street:Turn streetActionNo:3 action:fold amount:0
|
||||
playerName:Player_5 street:Preflop streetActionNo:1 action:blind amount:2
|
||||
playerName:Player_5 street:Preflop streetActionNo:8 action:check amount:0
|
||||
playerName:Player_5 street:Flop streetActionNo:1 action:bet amount:2
|
||||
playerName:Player_5 street:Turn streetActionNo:1 action:bet amount:4
|
||||
playerName:Player_5 street:Turn streetActionNo:4 action:call amount:4
|
||||
playerName:Player_5 street:River streetActionNo:0 action:check amount:0
|
||||
playerName:Player_5 street:River streetActionNo:2 action:call amount:4
|
||||
playerName:Player_6 street:Preflop streetActionNo:2 action:fold amount:0
|
||||
playerName:Player_7 street:Preflop streetActionNo:3 action:fold amount:0
|
|
@ -1,58 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: PokerStars siteId: 2
|
||||
|
||||
From Table Hands
|
||||
================
|
||||
handId: 3 tableName: Merope siteHandNo: 14519433154 gametypeId: 1 handStart: 2008-01-13 05:24:25 seats: 7 maxSeats: 10
|
||||
|
||||
From Table Gametypes
|
||||
====================
|
||||
type: ring base: hold category: holdem limitType: fl hiLo: h
|
||||
sb: 1 bb: 2 sbet: 2 bbet: 4
|
||||
|
||||
From Table BoardCards
|
||||
=====================
|
||||
Board cards: 4h 9s Ad Qc Ks
|
||||
|
||||
From Table HandsPlayers
|
||||
=======================
|
||||
playerName:Player_1 playerStartcash:65 position:3 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_2 playerStartcash:68 position:2 off Btn cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_3 playerStartcash:179 position:1 off Btn cards:Ah 9d winnings:92 rake:4
|
||||
playerName:Player_4 playerStartcash:201 position:Btn cards:Ac Td winnings:0 rake:0
|
||||
playerName:Player_5 playerStartcash:102 position:SB cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_6 playerStartcash:34 position:BB cards:?? ?? winnings:0 rake:0
|
||||
playerName:Player_7 playerStartcash:135 position:4 off Btn cards:7c Jh winnings:0 rake:0
|
||||
|
||||
From Table HandsActions
|
||||
=======================
|
||||
playerName:Player_1 street:Preflop streetActionNo:3 action:fold amount:0
|
||||
playerName:Player_2 street:Preflop streetActionNo:4 action:fold amount:0
|
||||
playerName:Player_3 street:Preflop streetActionNo:5 action:call amount:2
|
||||
playerName:Player_3 street:Preflop streetActionNo:9 action:call amount:2
|
||||
playerName:Player_3 street:Flop streetActionNo:2 action:bet amount:2
|
||||
playerName:Player_3 street:Flop streetActionNo:6 action:bet amount:4
|
||||
playerName:Player_3 street:Flop streetActionNo:8 action:call amount:2
|
||||
playerName:Player_3 street:Turn streetActionNo:0 action:bet amount:4
|
||||
playerName:Player_3 street:Turn streetActionNo:2 action:bet amount:8
|
||||
playerName:Player_3 street:Turn streetActionNo:4 action:call amount:4
|
||||
playerName:Player_3 street:River streetActionNo:0 action:bet amount:4
|
||||
playerName:Player_3 street:River streetActionNo:2 action:bet amount:8
|
||||
playerName:Player_3 street:River streetActionNo:4 action:call amount:4
|
||||
playerName:Player_4 street:Preflop streetActionNo:6 action:call amount:2
|
||||
playerName:Player_4 street:Preflop streetActionNo:10 action:call amount:2
|
||||
playerName:Player_4 street:Flop streetActionNo:3 action:bet amount:4
|
||||
playerName:Player_4 street:Flop streetActionNo:7 action:bet amount:4
|
||||
playerName:Player_4 street:Turn streetActionNo:1 action:bet amount:8
|
||||
playerName:Player_4 street:Turn streetActionNo:3 action:bet amount:8
|
||||
playerName:Player_4 street:River streetActionNo:1 action:bet amount:8
|
||||
playerName:Player_4 street:River streetActionNo:3 action:bet amount:8
|
||||
playerName:Player_5 street:Preflop streetActionNo:0 action:blind amount:1
|
||||
playerName:Player_5 street:Preflop streetActionNo:7 action:bet amount:3
|
||||
playerName:Player_5 street:Flop streetActionNo:0 action:check amount:0
|
||||
playerName:Player_5 street:Flop streetActionNo:4 action:fold amount:0
|
||||
playerName:Player_6 street:Preflop streetActionNo:1 action:blind amount:2
|
||||
playerName:Player_6 street:Preflop streetActionNo:8 action:call amount:2
|
||||
playerName:Player_6 street:Flop streetActionNo:1 action:check amount:0
|
||||
playerName:Player_6 street:Flop streetActionNo:5 action:fold amount:0
|
||||
playerName:Player_7 street:Preflop streetActionNo:2 action:fold amount:0
|
|
@ -1,43 +0,0 @@
|
|||
Connected to MySQL on localhost. Print Hand Utility
|
||||
options.site: PokerStars siteId: 2
|
||||
|
||||
From Table Hands
|
||||
================
|
||||
handId: 5 tableName: Lydia siteHandNo: 15043388146 gametypeId: 3 handStart: 2008-02-04 03:04:15 seats: 6 maxSeats: 8
|
||||
|
||||
From Table Gametypes
|
||||
====================
|
||||
type: ring base: stud category: studhilo limitType: fl hiLo: s
|
||||
sbet: 10 bbet: 20
|
||||
|
||||
From Table BoardCards
|
||||
=====================
|
||||
|
||||
From Table HandsPlayers
|
||||
=======================
|
||||
playerName:olimpicon99 playerStartcash:531 ante:2 cards:?? ?? 8c ?? ?? ?? ?? winnings:0 rake:0
|
||||
playerName:PokerPig55 playerStartcash:158 ante:2 cards:?? ?? Kh ?? ?? ?? ?? winnings:0 rake:0
|
||||
playerName:VISTA GIRL playerStartcash:83 ante:2 cards:?? ?? 8h ?? ?? ?? ?? winnings:0 rake:0
|
||||
playerName:br1an playerStartcash:510 ante:2 cards:4c 7d 2d Qh 6d 6h 2h winnings:0 rake:0
|
||||
playerName:steffen780 playerStartcash:400 ante:2 cards:Kc 9h 9c 5c 8s ?? ?? winnings:0 rake:0
|
||||
playerName:willowdale playerStartcash:392 ante:2 cards:3s 4d 5s 4s Ad 5h 2c winnings:102 rake:5
|
||||
|
||||
From Table HandsActions
|
||||
=======================
|
||||
playerName:olimpicon99 street:0 streetActionNo:3 action:fold amount:0
|
||||
playerName:PokerPig55 street:0 streetActionNo:4 action:fold amount:0
|
||||
playerName:VISTA GIRL street:0 streetActionNo:5 action:fold amount:0
|
||||
playerName:br1an street:0 streetActionNo:0 action:blind amount:5
|
||||
playerName:br1an street:1 streetActionNo:0 action:check amount:0
|
||||
playerName:br1an street:2 streetActionNo:1 action:call amount:20
|
||||
playerName:br1an street:3 streetActionNo:0 action:check amount:0
|
||||
playerName:br1an street:4 streetActionNo:0 action:check amount:0
|
||||
playerName:br1an street:4 streetActionNo:2 action:call amount:20
|
||||
playerName:steffen780 street:0 streetActionNo:1 action:call amount:5
|
||||
playerName:steffen780 street:1 streetActionNo:1 action:check amount:0
|
||||
playerName:steffen780 street:2 streetActionNo:2 action:fold amount:0
|
||||
playerName:willowdale street:0 streetActionNo:2 action:call amount:5
|
||||
playerName:willowdale street:1 streetActionNo:2 action:check amount:0
|
||||
playerName:willowdale street:2 streetActionNo:0 action:bet amount:20
|
||||
playerName:willowdale street:3 streetActionNo:1 action:check amount:0
|
||||
playerName:willowdale street:4 streetActionNo:1 action:bet amount:20
|
|
@ -1,44 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
#Copyright 2008-2011 Steffen Schaumburg
|
||||
#This program is free software: you can redistribute it and/or modify
|
||||
#it under the terms of the GNU Affero General Public License as published by
|
||||
#the Free Software Foundation, version 3 of the License.
|
||||
#
|
||||
#This program is distributed in the hope that it will be useful,
|
||||
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
#GNU General Public License for more details.
|
||||
#
|
||||
#You should have received a copy of the GNU Affero General Public License
|
||||
#along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#In the "official" distribution you can find the license in agpl-3.0.txt.
|
||||
|
||||
echo "Please note for this to work you need to work on an empty database, otherwise some info (the id fields) will be off"
|
||||
|
||||
rm *.found.txt
|
||||
../pyfpdb/CliFpdb.py -p$1 --file=ps-lhe-ring-3hands.txt -x
|
||||
../pyfpdb/CliFpdb.py -p$1 --file=ps-lhe-ring-3hands.txt -x
|
||||
|
||||
echo "it should've reported first that it stored 3, then that it had 3 duplicates"
|
||||
|
||||
./PrintHand.py -p$1 --hand=14519394979 > ps.14519394979.found.txt && colordiff ps.14519394979.found.txt ps.14519394979.expected.txt
|
||||
./PrintHand.py -p$1 --hand=14519420999 > ps.14519420999.found.txt && colordiff ps.14519420999.found.txt ps.14519420999.expected.txt
|
||||
./PrintHand.py -p$1 --hand=14519433154 > ps.14519433154.found.txt && colordiff ps.14519433154.found.txt ps.14519433154.expected.txt
|
||||
|
||||
./PrintPlayerHudData.py -p$1 -oM > ps-flags-M-2hands.found.txt && colordiff ps-flags-M-2hands.found.txt ps-flags-M-2hands.expected.txt
|
||||
./PrintPlayerHudData.py -p$1 -nPlayer_5 -oB > ps-flags-B-1hands.found.txt && colordiff ps-flags-B-1hands.found.txt ps-flags-B-1hands.expected.txt
|
||||
|
||||
|
||||
../pyfpdb/CliFpdb.py -p$1 --file=ps-lhe-ring-call-3B-preflop-cb-no2b.txt -x
|
||||
echo "it should've now reported another successful store of 1 hand"
|
||||
./PrintPlayerHudData.py -p$1 -nplayer3 -oE -e10 -b50 > ps-flags-CBflop.found.txt && colordiff ps-flags-CBflop.found.txt ps-flags-CBflop.expected.txt
|
||||
|
||||
|
||||
../pyfpdb/CliFpdb.py -p$1 --file=ps-studhilo-ring-showdown.txt -x
|
||||
echo "it should've now reported another successful store of 1 hand"
|
||||
./PrintHand.py -p$1 --hand=15043388146 > ps.15043388146.found.txt && colordiff ps.15043388146.found.txt ps.15043388146.expected.txt
|
||||
./PrintPlayerHudData.py -p$1 -nbr1an -o0 -e6 -b20 -cstudhilo> ps-flags-studhilo.found.txt && colordiff ps-flags-studhilo.found.txt ps-flags-studhilo.expected.txt
|
||||
|
||||
|
||||
echo "if everything was printed as expected this worked"
|
Loading…
Reference in New Issue
Block a user