Merge branch 'master' of git://git.assembla.com/fpdboz.git
Conflicts: pyfpdb/HUD_main.pyw
This commit is contained in:
commit
4de792a1eb
|
@ -126,6 +126,7 @@ class Database:
|
|||
, {'tab':'Hands', 'col':'gametypeId', 'drop':0} # mct 22/3/09
|
||||
#, {'tab':'Hands', 'col':'siteHandNo', 'drop':0} unique indexes not dropped
|
||||
, {'tab':'HandsActions', 'col':'handsPlayerId', 'drop':0}
|
||||
, {'tab':'HandsActions', 'col':'actionId', 'drop':1}
|
||||
, {'tab':'HandsPlayers', 'col':'handId', 'drop':1}
|
||||
, {'tab':'HandsPlayers', 'col':'playerId', 'drop':1}
|
||||
, {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0}
|
||||
|
@ -149,6 +150,8 @@ class Database:
|
|||
, {'tab':'HandsPlayers', 'col':'handId', 'drop':0}
|
||||
, {'tab':'HandsPlayers', 'col':'playerId', 'drop':0}
|
||||
, {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0}
|
||||
, {'tab':'HandsActions', 'col':'handsPlayerId', 'drop':0}
|
||||
, {'tab':'HandsActions', 'col':'actionId', 'drop':1}
|
||||
, {'tab':'HudCache', 'col':'gametypeId', 'drop':1}
|
||||
, {'tab':'HudCache', 'col':'playerId', 'drop':0}
|
||||
, {'tab':'HudCache', 'col':'tourneyTypeId', 'drop':0}
|
||||
|
@ -172,6 +175,7 @@ class Database:
|
|||
, {'fktab':'HandsPlayers', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsPlayers', 'fkcol':'tourneysPlayersId','rtab':'TourneysPlayers','rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsActions', 'fkcol':'handsPlayerId', 'rtab':'HandsPlayers', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsActions', 'fkcol':'actionId', 'rtab':'Actions', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HudCache', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HudCache', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':0}
|
||||
, {'fktab':'HudCache', 'fkcol':'tourneyTypeId', 'rtab':'TourneyTypes', 'rcol':'id', 'drop':1}
|
||||
|
@ -181,6 +185,7 @@ class Database:
|
|||
, {'fktab':'HandsPlayers', 'fkcol':'handId', 'rtab':'Hands', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsPlayers', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsActions', 'fkcol':'handsPlayerId', 'rtab':'HandsPlayers', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HandsActions', 'fkcol':'actionId', 'rtab':'Actions', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HudCache', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1}
|
||||
, {'fktab':'HudCache', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':0}
|
||||
, {'fktab':'HudCache', 'fkcol':'tourneyTypeId', 'rtab':'TourneyTypes', 'rcol':'id', 'drop':1}
|
||||
|
@ -302,7 +307,7 @@ class Database:
|
|||
|
||||
tables=self.cursor.execute(self.sql.query['list_tables'])
|
||||
tables=self.cursor.fetchall()
|
||||
for table in (u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'):
|
||||
for table in (u'Actions', u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'):
|
||||
print "table:", table
|
||||
result+="###################\nTable "+table+"\n###################\n"
|
||||
rows=self.cursor.execute(self.sql.query['get'+table])
|
||||
|
@ -1151,6 +1156,7 @@ class Database:
|
|||
c.execute(self.sql.query['createSettingsTable'])
|
||||
|
||||
log.debug("Creating tables")
|
||||
c.execute(self.sql.query['createActionsTable'])
|
||||
c.execute(self.sql.query['createSitesTable'])
|
||||
c.execute(self.sql.query['createGametypesTable'])
|
||||
c.execute(self.sql.query['createPlayersTable'])
|
||||
|
@ -1422,6 +1428,7 @@ class Database:
|
|||
def fillDefaultData(self):
|
||||
c = self.get_cursor()
|
||||
c.execute("INSERT INTO Settings (version) VALUES (%s);" % (DB_VERSION))
|
||||
#Fill Sites
|
||||
c.execute("INSERT INTO Sites (name,code) VALUES ('Full Tilt Poker', 'FT')")
|
||||
c.execute("INSERT INTO Sites (name,code) VALUES ('PokerStars', 'PS')")
|
||||
c.execute("INSERT INTO Sites (name,code) VALUES ('Everleaf', 'EV')")
|
||||
|
@ -1436,6 +1443,22 @@ class Database:
|
|||
c.execute("INSERT INTO Sites (name,code) VALUES ('PKR', 'PK')")
|
||||
c.execute("INSERT INTO Sites (name,code) VALUES ('iPoker', 'IP')")
|
||||
c.execute("INSERT INTO Sites (name,code) VALUES ('Winamax', 'WM')")
|
||||
#Fill Actions
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('ante', 'A')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('small blind', 'SB')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('secondsb', 'SSB')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('big blind', 'BB')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('both', 'SBBB')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('calls', 'C')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('raises', 'R')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('bets', 'B')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('stands pat', 'S')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('folds', 'F')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('checks', 'K')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('discards', 'D')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('bringin', 'I')")
|
||||
c.execute("INSERT INTO Actions (name,code) VALUES ('completes', 'P')")
|
||||
|
||||
#end def fillDefaultData
|
||||
|
||||
def rebuild_indexes(self, start=None):
|
||||
|
@ -1653,6 +1676,7 @@ class Database:
|
|||
pp.pprint(pdata)
|
||||
|
||||
inserts = []
|
||||
hpid = {}
|
||||
for p in pdata:
|
||||
inserts.append( (hid,
|
||||
pids[p],
|
||||
|
@ -1757,39 +1781,44 @@ class Database:
|
|||
#print "DEBUG: inserts: %s" %inserts
|
||||
#print "DEBUG: q: %s" % q
|
||||
c = self.get_cursor()
|
||||
c.executemany(q, inserts)
|
||||
|
||||
if self.import_options['saveActions']:
|
||||
for r in inserts:
|
||||
c.execute(q, r)
|
||||
hpid[(r[0], r[1])] = self.get_last_insert_id(c)
|
||||
else:
|
||||
c.executemany(q, inserts)
|
||||
|
||||
return hpid
|
||||
|
||||
def storeHandsActions(self, hid, pids, adata, printdata = False):
|
||||
def storeHandsActions(self, hid, pids, hpid, adata, printdata = False):
|
||||
#print "DEBUG: %s %s %s" %(hid, pids, adata)
|
||||
if printdata:
|
||||
import pprint
|
||||
pp = pprint.PrettyPrinter(indent=4)
|
||||
pp.pprint(adata)
|
||||
|
||||
#inserts = []
|
||||
#for p in pdata:
|
||||
# inserts.append( (hid,
|
||||
# pids[p],
|
||||
# adata[p]['startCash'],
|
||||
# adata[p]['seatNo'],
|
||||
# adata[p]['sitout'],
|
||||
# adata[p]['card1'],
|
||||
|
||||
#handsPlayerId BIGINT UNSIGNED NOT NULL, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id),
|
||||
#street SMALLINT NOT NULL,
|
||||
#actionNo SMALLINT NOT NULL,
|
||||
#action CHAR(5) NOT NULL,
|
||||
#allIn BOOLEAN NOT NULL,
|
||||
#amount INT NOT NULL,
|
||||
|
||||
inserts = []
|
||||
for a in adata:
|
||||
inserts.append( (hpid[(hid, pids[adata[a]['player']])],
|
||||
#self.getHandsPlayerId(self.hid, pids[adata[a]['player']]),
|
||||
adata[a]['street'],
|
||||
adata[a]['actionNo'],
|
||||
adata[a]['streetActionNo'],
|
||||
adata[a]['actionId'],
|
||||
adata[a]['amount'],
|
||||
adata[a]['raiseTo'],
|
||||
adata[a]['amountCalled'],
|
||||
adata[a]['numDiscarded'],
|
||||
adata[a]['cardsDiscarded'],
|
||||
adata[a]['allIn']
|
||||
) )
|
||||
|
||||
q = self.sql.query['store_hands_actions']
|
||||
#q = q.replace('%s', self.sql.query['placeholder'])
|
||||
q = q.replace('%s', self.sql.query['placeholder'])
|
||||
|
||||
#print "DEBUG: inserts: %s" %inserts
|
||||
#print "DEBUG: q: %s" % q
|
||||
#c = self.get_cursor()
|
||||
#c.executemany(q, inserts)
|
||||
c = self.get_cursor()
|
||||
c.executemany(q, inserts)
|
||||
|
||||
def storeHudCache(self, gid, pids, starttime, pdata):
|
||||
"""Update cached statistics. If update fails because no record exists, do an insert."""
|
||||
|
|
|
@ -23,13 +23,6 @@ import logging
|
|||
# logging has been set up in fpdb.py or HUD_main.py, use their settings:
|
||||
log = logging.getLogger("parser")
|
||||
|
||||
DEBUG = False
|
||||
|
||||
if DEBUG:
|
||||
import pprint
|
||||
pp = pprint.PrettyPrinter(indent=4)
|
||||
|
||||
|
||||
class DerivedStats():
|
||||
def __init__(self, hand):
|
||||
self.hand = hand
|
||||
|
@ -93,17 +86,9 @@ class DerivedStats():
|
|||
self.assembleHands(self.hand)
|
||||
self.assembleHandsPlayers(self.hand)
|
||||
|
||||
if DEBUG:
|
||||
if self.hand.saveActions:
|
||||
self.assembleHandsActions(self.hand)
|
||||
|
||||
if DEBUG:
|
||||
#print "Hands:"
|
||||
#pp.pprint(self.hands)
|
||||
#print "HandsPlayers:"
|
||||
#pp.pprint(self.handsplayers)
|
||||
print "HandsActions:"
|
||||
pp.pprint(self.handsactions)
|
||||
|
||||
def getHands(self):
|
||||
return self.hands
|
||||
|
||||
|
@ -216,9 +201,35 @@ class DerivedStats():
|
|||
# Squeeze, Ratchet?
|
||||
|
||||
def assembleHandsActions(self, hand):
|
||||
print "DEBUG: hand.actions"
|
||||
pp.pprint(hand.actions)
|
||||
pass
|
||||
k = 0
|
||||
for i, street in enumerate(hand.actionStreets):
|
||||
for j, act in enumerate(hand.actions[street]):
|
||||
k += 1
|
||||
self.handsactions[k] = {}
|
||||
#default values
|
||||
self.handsactions[k]['amount'] = 0
|
||||
self.handsactions[k]['raiseTo'] = 0
|
||||
self.handsactions[k]['amountCalled'] = 0
|
||||
self.handsactions[k]['numDiscarded'] = 0
|
||||
self.handsactions[k]['cardsDiscarded'] = None
|
||||
self.handsactions[k]['allIn'] = False
|
||||
#Insert values from hand.actions
|
||||
self.handsactions[k]['player'] = act[0]
|
||||
self.handsactions[k]['street'] = i-1
|
||||
self.handsactions[k]['actionNo'] = k
|
||||
self.handsactions[k]['streetActionNo'] = (j+1)
|
||||
self.handsactions[k]['actionId'] = hand.ACTION[act[1]]
|
||||
if act[1] not in ('discards') and len(act) > 2:
|
||||
self.handsactions[k]['amount'] = int(100 * act[2])
|
||||
if act[1] in ('raises', 'completes'):
|
||||
self.handsactions[k]['raiseTo'] = int(100 * act[3])
|
||||
self.handsactions[k]['amountCalled'] = int(100 * act[4])
|
||||
if act[1] in ('discards'):
|
||||
self.handsactions[k]['numDiscarded'] = int(act[2])
|
||||
if act[1] in ('discards') and len(act) > 3:
|
||||
self.handsactions[k]['cardsDiscarded'] = act[3]
|
||||
if len(act) > 3 and act[1] not in ('discards'):
|
||||
self.handsactions[k]['allIn'] = act[-1]
|
||||
|
||||
def setPositions(self, hand):
|
||||
"""Sets the position for each player in HandsPlayers
|
||||
|
@ -251,8 +262,8 @@ class DerivedStats():
|
|||
else:
|
||||
# set blinds first, then others from pfbao list, avoids problem if bb
|
||||
# is missing from pfbao list or if there is no small blind
|
||||
bb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[2] == 'big blind']
|
||||
sb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[2] == 'small blind']
|
||||
bb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[1] == 'big blind']
|
||||
sb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[1] == 'small blind']
|
||||
# if there are > 1 sb or bb only the first is used!
|
||||
if bb:
|
||||
self.handsplayers[bb[0]]['position'] = 'B'
|
||||
|
|
|
@ -49,11 +49,14 @@ class Hand(object):
|
|||
LCS = {'H':'h', 'D':'d', 'C':'c', 'S':'s'}
|
||||
SYMBOL = {'USD': '$', 'EUR': u'$', 'GBP': '$', 'T$': '', 'play': ''}
|
||||
MS = {'horse' : 'HORSE', '8game' : '8-Game', 'hose' : 'HOSE', 'ha': 'HA'}
|
||||
ACTION = {'ante': 1, 'small blind': 2, 'secondsb': 3, 'big blind': 4, 'both': 5, 'calls': 6, 'raises': 7,
|
||||
'bets': 8, 'stands pat': 9, 'folds': 10, 'checks': 11, 'discards': 12, 'bringin': 13, 'completes': 14}
|
||||
|
||||
|
||||
def __init__(self, config, sitename, gametype, handText, builtFrom = "HHC"):
|
||||
#log.debug( _("Hand.init(): handText is ") + str(handText) )
|
||||
self.config = config
|
||||
self.saveActions = self.config.get_import_parameters().get('saveActions')
|
||||
#log = Configuration.get_logger("logging.conf", "db", log_dir=self.config.dir_log)
|
||||
self.sitename = sitename
|
||||
self.siteId = self.config.get_site_id(sitename)
|
||||
|
@ -65,13 +68,14 @@ class Hand(object):
|
|||
self.cancelled = False
|
||||
self.dbid_hands = 0
|
||||
self.dbid_pids = None
|
||||
self.dbid_hpid = None
|
||||
self.dbid_gt = 0
|
||||
self.tablename = ""
|
||||
self.hero = ""
|
||||
self.maxseats = None
|
||||
self.counted_seats = 0
|
||||
self.buttonpos = 0
|
||||
|
||||
|
||||
#tourney stuff
|
||||
self.tourNo = None
|
||||
self.tourneyId = None
|
||||
|
@ -97,7 +101,7 @@ class Hand(object):
|
|||
self.players = []
|
||||
self.posted = []
|
||||
self.tourneysPlayersIds = []
|
||||
|
||||
|
||||
# Collections indexed by street names
|
||||
self.bets = {}
|
||||
self.lastBet = {}
|
||||
|
@ -232,7 +236,7 @@ dealt whether they were seen in a 'dealt to' line
|
|||
|
||||
#Gametypes
|
||||
self.dbid_gt = db.getGameTypeId(self.siteId, self.gametype)
|
||||
|
||||
|
||||
if self.tourNo!=None:
|
||||
self.tourneyTypeId = db.createTourneyType(self)
|
||||
db.commit()
|
||||
|
@ -262,10 +266,11 @@ db: a connected Database object"""
|
|||
hh['seats'] = len(self.dbid_pids)
|
||||
|
||||
self.dbid_hands = db.storeHand(hh)
|
||||
db.storeHandsPlayers(self.dbid_hands, self.dbid_pids, self.stats.getHandsPlayers(), printdata = printtest)
|
||||
# TODO HandsActions - all actions for all players for all streets - self.actions
|
||||
# HudCache data can be generated from HandsActions (HandsPlayers?)
|
||||
#db.storeHandsActions(self.dbid_hands, self.dbid_pids, self.stats.getHandsActions(), printdata = printtest)
|
||||
self.dbid_hpid = db.storeHandsPlayers(self.dbid_hands, self.dbid_pids,
|
||||
self.stats.getHandsPlayers(), printdata = printtest)
|
||||
if self.saveActions:
|
||||
db.storeHandsActions(self.dbid_hands, self.dbid_pids, self.dbid_hpid,
|
||||
self.stats.getHandsActions(), printdata = printtest)
|
||||
else:
|
||||
log.info(_("Hand.insert(): hid #: %s is a duplicate") % hh['siteHandNo'])
|
||||
self.is_duplicate = True # i.e. don't update hudcache
|
||||
|
@ -350,12 +355,12 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio
|
|||
ante = re.sub(u',', u'', ante) #some sites have commas
|
||||
self.bets['BLINDSANTES'][player].append(Decimal(ante))
|
||||
self.stacks[player] -= Decimal(ante)
|
||||
act = (player, 'posts', "ante", ante, self.stacks[player]==0)
|
||||
act = (player, 'ante', Decimal(ante), self.stacks[player]==0)
|
||||
self.actions['BLINDSANTES'].append(act)
|
||||
# self.pot.addMoney(player, Decimal(ante))
|
||||
self.pot.addCommonMoney(player, Decimal(ante))
|
||||
#I think the antes should be common money, don't have enough hand history to check
|
||||
|
||||
|
||||
def addBlind(self, player, blindtype, amount):
|
||||
# if player is None, it's a missing small blind.
|
||||
# The situation we need to cover are:
|
||||
|
@ -369,13 +374,13 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio
|
|||
if player is not None:
|
||||
amount = re.sub(u',', u'', amount) #some sites have commas
|
||||
self.stacks[player] -= Decimal(amount)
|
||||
act = (player, 'posts', blindtype, amount, self.stacks[player]==0)
|
||||
act = (player, blindtype, Decimal(amount), self.stacks[player]==0)
|
||||
self.actions['BLINDSANTES'].append(act)
|
||||
|
||||
if blindtype == 'both':
|
||||
# work with the real amount. limit games are listed as $1, $2, where
|
||||
# the SB 0.50 and the BB is $1, after the turn the minimum bet amount is $2....
|
||||
amount = self.bb
|
||||
amount = self.bb
|
||||
self.bets['BLINDSANTES'][player].append(Decimal(self.sb))
|
||||
self.pot.addCommonMoney(player, Decimal(self.sb))
|
||||
|
||||
|
@ -402,7 +407,7 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio
|
|||
#self.lastBet[street] = Decimal(amount)
|
||||
self.stacks[player] -= Decimal(amount)
|
||||
#print "DEBUG %s calls %s, stack %s" % (player, amount, self.stacks[player])
|
||||
act = (player, 'calls', amount, self.stacks[player]==0)
|
||||
act = (player, 'calls', Decimal(amount), self.stacks[player]==0)
|
||||
self.actions[street].append(act)
|
||||
self.pot.addMoney(player, Decimal(amount))
|
||||
|
||||
|
@ -463,11 +468,11 @@ Add a raise on [street] by [player] to [amountTo]
|
|||
Rb = Rt - C - Bc
|
||||
self._addRaise(street, player, C, Rb, Rt)
|
||||
|
||||
def _addRaise(self, street, player, C, Rb, Rt):
|
||||
def _addRaise(self, street, player, C, Rb, Rt, action = 'raises'):
|
||||
log.debug(_("%s %s raise %s") %(street, player, Rt))
|
||||
self.bets[street][player].append(C + Rb)
|
||||
self.stacks[player] -= (C + Rb)
|
||||
act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0)
|
||||
act = (player, action, Rb, Rt, C, self.stacks[player]==0)
|
||||
self.actions[street].append(act)
|
||||
self.lastBet[street] = Rt # TODO check this is correct
|
||||
self.pot.addMoney(player, C+Rb)
|
||||
|
@ -481,7 +486,7 @@ Add a raise on [street] by [player] to [amountTo]
|
|||
self.bets[street][player].append(Decimal(amount))
|
||||
self.stacks[player] -= Decimal(amount)
|
||||
#print "DEBUG %s bets %s, stack %s" % (player, amount, self.stacks[player])
|
||||
act = (player, 'bets', amount, self.stacks[player]==0)
|
||||
act = (player, 'bets', Decimal(amount), self.stacks[player]==0)
|
||||
self.actions[street].append(act)
|
||||
self.lastBet[street] = Decimal(amount)
|
||||
self.pot.addMoney(player, Decimal(amount))
|
||||
|
@ -544,7 +549,7 @@ Card ranks will be uppercased
|
|||
self.totalcollected = 0;
|
||||
#self.collected looks like [[p1,amount][px,amount]]
|
||||
for entry in self.collected:
|
||||
self.totalcollected += Decimal(entry[1])
|
||||
self.totalcollected += Decimal(entry[1])
|
||||
|
||||
def getGameTypeAsString(self):
|
||||
"""\
|
||||
|
@ -684,12 +689,12 @@ class HoldemOmahaHand(Hand):
|
|||
hhc.readPlayerStacks(self)
|
||||
hhc.compilePlayerRegexs(self)
|
||||
hhc.markStreets(self)
|
||||
|
||||
|
||||
if self.cancelled:
|
||||
return
|
||||
|
||||
|
||||
hhc.readBlinds(self)
|
||||
|
||||
|
||||
hhc.readAntes(self)
|
||||
hhc.readButton(self)
|
||||
hhc.readHeroCards(self)
|
||||
|
@ -1020,7 +1025,7 @@ class DrawHand(Hand):
|
|||
self.bets['DEAL'][player].append(Decimal(amount))
|
||||
self.stacks[player] -= Decimal(amount)
|
||||
#print "DEBUG %s posts, stack %s" % (player, self.stacks[player])
|
||||
act = (player, 'posts', blindtype, amount, self.stacks[player]==0)
|
||||
act = (player, blindtype, Decimal(amount), self.stacks[player]==0)
|
||||
self.actions['BLINDSANTES'].append(act)
|
||||
self.pot.addMoney(player, Decimal(amount))
|
||||
if blindtype == 'big blind':
|
||||
|
@ -1050,10 +1055,10 @@ class DrawHand(Hand):
|
|||
def addDiscard(self, street, player, num, cards):
|
||||
self.checkPlayerExists(player)
|
||||
if cards:
|
||||
act = (player, 'discards', num, cards)
|
||||
act = (player, 'discards', Decimal(num), cards)
|
||||
self.discardDrawHoleCards(cards, player, street)
|
||||
else:
|
||||
act = (player, 'discards', num)
|
||||
act = (player, 'discards', Decimal(num))
|
||||
self.actions[street].append(act)
|
||||
|
||||
def holecardsAsSet(self, street, player):
|
||||
|
@ -1246,7 +1251,7 @@ Add a complete on [street] by [player] to [amountTo]
|
|||
Rt = Decimal(amountTo)
|
||||
C = Bp - Bc
|
||||
Rb = Rt - C
|
||||
self._addRaise(street, player, C, Rb, Rt)
|
||||
self._addRaise(street, player, C, Rb, Rt, 'completes')
|
||||
#~ self.bets[street][player].append(C + Rb)
|
||||
#~ self.stacks[player] -= (C + Rb)
|
||||
#~ act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0)
|
||||
|
@ -1259,7 +1264,7 @@ Add a complete on [street] by [player] to [amountTo]
|
|||
log.debug(_("Bringin: %s, %s") % (player , bringin))
|
||||
self.bets['THIRD'][player].append(Decimal(bringin))
|
||||
self.stacks[player] -= Decimal(bringin)
|
||||
act = (player, 'bringin', bringin, self.stacks[player]==0)
|
||||
act = (player, 'bringin', Decimal(bringin), self.stacks[player]==0)
|
||||
self.actions['THIRD'].append(act)
|
||||
self.lastBet['THIRD'] = Decimal(bringin)
|
||||
self.pot.addMoney(player, Decimal(bringin))
|
||||
|
@ -1486,7 +1491,7 @@ class Pot(object):
|
|||
# Return any uncalled bet.
|
||||
committed = sorted([ (v,k) for (k,v) in self.committed.items()])
|
||||
#print "DEBUG: committed: %s" % committed
|
||||
#ERROR below. lastbet is correct in most cases, but wrong when
|
||||
#ERROR below. lastbet is correct in most cases, but wrong when
|
||||
# additional money is committed to the pot in cash games
|
||||
# due to an additional sb being posted. (Speculate that
|
||||
# posting sb+bb is also potentially wrong)
|
||||
|
|
|
@ -52,7 +52,7 @@ class PartyPoker(HandHistoryConverter):
|
|||
re_GameInfoRing = re.compile("""
|
||||
(?P<CURRENCY>\$|)\s*(?P<RINGLIMIT>[.,0-9]+)([.,0-9/$]+)?\s*(?:USD)?\s*
|
||||
(?P<LIMIT>(NL|PL|))\s*
|
||||
(?P<GAME>(Texas\ Hold\'em|Omaha))
|
||||
(?P<GAME>(Texas\ Hold\'em|Omaha|7 Card Stud Hi-Lo))
|
||||
\s*\-\s*
|
||||
(?P<DATETIME>.+)
|
||||
""", re.VERBOSE)
|
||||
|
@ -202,6 +202,7 @@ class PartyPoker(HandHistoryConverter):
|
|||
games = { # base, category
|
||||
"Texas Hold'em" : ('hold','holdem'),
|
||||
'Omaha' : ('hold','omahahi'),
|
||||
"7 Card Stud Hi-Lo" : ('stud','studhi'),
|
||||
}
|
||||
currencies = { '$':'USD', '':'T$' }
|
||||
|
||||
|
@ -348,19 +349,19 @@ class PartyPoker(HandHistoryConverter):
|
|||
def readPlayerStacks(self, hand):
|
||||
log.debug("readPlayerStacks")
|
||||
m = self.re_PlayerInfo.finditer(hand.handText)
|
||||
players = []
|
||||
maxKnownStack = 0
|
||||
zeroStackPlayers = []
|
||||
for a in m:
|
||||
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'),
|
||||
clearMoneyString(a.group('CASH')))
|
||||
|
||||
# detecting new active players without a seat
|
||||
# and new active players with zero stack
|
||||
if a.group('CASH') > '0':
|
||||
#record max known stack for use with players with unknown stack
|
||||
maxKnownStack = max(a.group('CASH'),maxKnownStack)
|
||||
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), clearMoneyString(a.group('CASH')))
|
||||
else:
|
||||
#zero stacked players are added later
|
||||
zeroStackPlayers.append([int(a.group('SEAT')), a.group('PNAME'), clearMoneyString(a.group('CASH'))])
|
||||
|
||||
if hand.gametype['type'] == 'ring':
|
||||
re_JoiningPlayers = re.compile(r"(?P<PLAYERNAME>.*) has joined the table")
|
||||
re_BBPostingPlayers = re.compile(r"(?P<PLAYERNAME>.*) posts big blind")
|
||||
seatedPlayers = list([(f[1]) for f in hand.players])
|
||||
|
||||
#finds first vacant seat after an exact seat
|
||||
def findFirstEmptySeat(startSeat):
|
||||
while startSeat in occupiedSeats:
|
||||
if startSeat >= hand.maxseats:
|
||||
|
@ -368,14 +369,25 @@ class PartyPoker(HandHistoryConverter):
|
|||
startSeat += 1
|
||||
return startSeat
|
||||
|
||||
re_JoiningPlayers = re.compile(r"(?P<PLAYERNAME>.*) has joined the table")
|
||||
re_BBPostingPlayers = re.compile(r"(?P<PLAYERNAME>.*) posts big blind")
|
||||
|
||||
match_JoiningPlayers = re_JoiningPlayers.findall(hand.handText)
|
||||
match_BBPostingPlayers = re_BBPostingPlayers.findall(hand.handText)
|
||||
ringLimit = self.re_GameInfoRing.search(hand.handText).groupdict()['RINGLIMIT']
|
||||
unseatedActivePlayers = list(set(match_BBPostingPlayers) - set(seatedPlayers))
|
||||
|
||||
for player in seatedPlayers:
|
||||
if hand.stacks[player] == 0 and player in match_BBPostingPlayers:
|
||||
hand.stacks[player] = Decimal(ringLimit)
|
||||
#add every player with zero stack, but:
|
||||
#if a zero stacked player is just joined the table in this very hand then set his stack to maxKnownStack
|
||||
for p in zeroStackPlayers:
|
||||
if p[1] in match_JoiningPlayers:
|
||||
p[2] = clearMoneyString(maxKnownStack)
|
||||
hand.addPlayer(p[0],p[1],p[2])
|
||||
|
||||
seatedPlayers = list([(f[1]) for f in hand.players])
|
||||
|
||||
#it works for all known cases as of 2010-09-28
|
||||
#should be refined with using match_ActivePlayers instead of match_BBPostingPlayers
|
||||
#as a leaving and rejoining player could be active without posting a BB (sample HH needed)
|
||||
unseatedActivePlayers = list(set(match_BBPostingPlayers) - set(seatedPlayers))
|
||||
|
||||
if unseatedActivePlayers:
|
||||
for player in unseatedActivePlayers:
|
||||
|
@ -384,7 +396,7 @@ class PartyPoker(HandHistoryConverter):
|
|||
occupiedSeats = list([(f[0]) for f in hand.players])
|
||||
occupiedSeats.sort()
|
||||
newPlayerSeat = findFirstEmptySeat(previousBBPosterSeat)
|
||||
hand.addPlayer(newPlayerSeat,player,clearMoneyString(ringLimit))
|
||||
hand.addPlayer(newPlayerSeat,player,clearMoneyString(maxKnownStack))
|
||||
|
||||
def markStreets(self, hand):
|
||||
m = re.search(
|
||||
|
|
|
@ -153,7 +153,28 @@ class Sql:
|
|||
tourneyId BIGINT NOT NULL,
|
||||
rawTourney TEXT NOT NULL,
|
||||
complain BOOLEAN NOT NULL DEFAULT FALSE)"""
|
||||
|
||||
|
||||
################################
|
||||
# Create Actions
|
||||
################################
|
||||
|
||||
if db_server == 'mysql':
|
||||
self.query['createActionsTable'] = """CREATE TABLE Actions (
|
||||
id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id),
|
||||
name varchar(32) NOT NULL,
|
||||
code char(2) NOT NULL)
|
||||
ENGINE=INNODB"""
|
||||
elif db_server == 'postgresql':
|
||||
self.query['createActionsTable'] = """CREATE TABLE Actions (
|
||||
id SERIAL, PRIMARY KEY (id),
|
||||
name varchar(32),
|
||||
code char(2))"""
|
||||
elif db_server == 'sqlite':
|
||||
self.query['createActionsTable'] = """CREATE TABLE Actions (
|
||||
id INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL,
|
||||
code TEXT NOT NULL)"""
|
||||
|
||||
################################
|
||||
# Create Sites
|
||||
################################
|
||||
|
@ -989,11 +1010,14 @@ class Sql:
|
|||
handsPlayerId BIGINT UNSIGNED NOT NULL, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id),
|
||||
street SMALLINT NOT NULL,
|
||||
actionNo SMALLINT NOT NULL,
|
||||
action CHAR(5) NOT NULL,
|
||||
allIn BOOLEAN NOT NULL,
|
||||
streetActionNo SMALLINT NOT NULL,
|
||||
actionId SMALLINT NOT NULL, FOREIGN KEY (actionId) REFERENCES Actions(id),
|
||||
amount INT NOT NULL,
|
||||
comment TEXT,
|
||||
commentTs DATETIME)
|
||||
raiseTo INT NOT NULL,
|
||||
amountCalled INT NOT NULL,
|
||||
numDiscarded SMALLINT NOT NULL,
|
||||
cardsDiscarded varchar(14),
|
||||
allIn BOOLEAN NOT NULL)
|
||||
ENGINE=INNODB"""
|
||||
elif db_server == 'postgresql':
|
||||
self.query['createHandsActionsTable'] = """CREATE TABLE HandsActions (
|
||||
|
@ -1001,24 +1025,31 @@ class Sql:
|
|||
handsPlayerId BIGINT, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id),
|
||||
street SMALLINT,
|
||||
actionNo SMALLINT,
|
||||
action CHAR(5),
|
||||
allIn BOOLEAN,
|
||||
streetActionNo SMALLINT,
|
||||
actionId SMALLINT, FOREIGN KEY (actionId) REFERENCES Actions(id),
|
||||
amount INT,
|
||||
comment TEXT,
|
||||
commentTs timestamp without time zone)"""
|
||||
raiseTo INT,
|
||||
amountCalled INT,
|
||||
numDiscarded SMALLINT,
|
||||
cardsDiscarded varchar(14),
|
||||
allIn BOOLEAN)"""
|
||||
elif db_server == 'sqlite':
|
||||
self.query['createHandsActionsTable'] = """CREATE TABLE HandsActions (
|
||||
id INTEGER PRIMARY KEY,
|
||||
handsPlayerId BIGINT,
|
||||
street SMALLINT,
|
||||
actionNo SMALLINT,
|
||||
action CHAR(5),
|
||||
allIn INT,
|
||||
streetActionNo SMALLINT,
|
||||
actionId SMALLINT,
|
||||
amount INT,
|
||||
comment TEXT,
|
||||
commentTs timestamp without time zone,
|
||||
FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id)
|
||||
)"""
|
||||
raiseTo INT,
|
||||
amountCalled INT,
|
||||
numDiscarded SMALLINT,
|
||||
cardsDiscarded TEXT,
|
||||
allIn BOOLEAN,
|
||||
FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id),
|
||||
FOREIGN KEY (actionId) REFERENCES Actions(id) ON DELETE CASCADE
|
||||
)"""
|
||||
|
||||
|
||||
################################
|
||||
|
@ -4251,11 +4282,17 @@ class Sql:
|
|||
handsPlayerId,
|
||||
street,
|
||||
actionNo,
|
||||
action,
|
||||
allIn,
|
||||
amount
|
||||
streetActionNo,
|
||||
actionId,
|
||||
amount,
|
||||
raiseTo,
|
||||
amountCalled,
|
||||
numDiscarded,
|
||||
cardsDiscarded,
|
||||
allIn
|
||||
)
|
||||
VALUES (
|
||||
%s, %s, %s, %s, %s,
|
||||
%s, %s, %s, %s, %s,
|
||||
%s
|
||||
)"""
|
||||
|
|
|
@ -189,7 +189,7 @@ class Table_Window(object):
|
|||
print "get_table_no: mo=",mo.groups()
|
||||
return mo.group(1)
|
||||
return False
|
||||
|
||||
|
||||
####################################################################
|
||||
# check_table() is meant to be called by the hud periodically to
|
||||
# determine if the client has been moved or resized. check_table()
|
||||
|
@ -254,7 +254,7 @@ class Table_Window(object):
|
|||
if hud is not None:
|
||||
hud.main_window.emit("table_changed", hud)
|
||||
return True
|
||||
|
||||
|
||||
def check_bad_words(self, title):
|
||||
for word in bad_words:
|
||||
if word in title: return True
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
########################################################################
|
||||
|
||||
import L10n
|
||||
_ = L10n.get_translation()
|
||||
|
||||
import sys
|
||||
import exceptions
|
||||
|
||||
|
@ -28,18 +31,6 @@ import Configuration
|
|||
from HandHistoryConverter import *
|
||||
from decimal import Decimal
|
||||
import time
|
||||
import locale
|
||||
|
||||
lang=locale.getdefaultlocale()[0][0:2]
|
||||
if lang=="en":
|
||||
def _(string): return string
|
||||
else:
|
||||
import gettext
|
||||
try:
|
||||
trans = gettext.translation("fpdb", localedir="locale", languages=[lang])
|
||||
trans.install()
|
||||
except IOError:
|
||||
def _(string): return string
|
||||
|
||||
# Winamax HH Format
|
||||
|
||||
|
@ -58,7 +49,7 @@ class Winamax(HandHistoryConverter):
|
|||
siteName = "Winamax"
|
||||
filetype = "text"
|
||||
codepage = ("utf8", "cp1252")
|
||||
siteId = 5 # Needs to match id entry in Sites database
|
||||
siteId = 14 # Needs to match id entry in Sites database
|
||||
|
||||
mixes = { } # Legal mixed games
|
||||
sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": "\xe2\x82\xac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE
|
||||
|
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 0.20.905 plus git\n"
|
||||
"POT-Creation-Date: 2010-09-22 20:10+CEST\n"
|
||||
"PO-Revision-Date: 2010-09-23 11:36+0200\n"
|
||||
"PO-Revision-Date: 2010-09-28 15:55+0200\n"
|
||||
"Last-Translator: Ferenc Erki <erkiferenc@gmail.com>\n"
|
||||
"Language-Team: Hungarian <erkiferenc@gmail.com>\n"
|
||||
"Language: hu\n"
|
||||
|
@ -1449,7 +1449,7 @@ msgstr "Sessionök"
|
|||
|
||||
#: GuiTourneyGraphViewer.py:185
|
||||
msgid "Tournaments"
|
||||
msgstr "Verseny3k"
|
||||
msgstr "Versenyek"
|
||||
|
||||
#: GuiTourneyGraphViewer.py:212 GuiTourneyGraphViewer.py:225
|
||||
msgid ""
|
||||
|
|
|
@ -1,91 +1,91 @@
|
|||
Stage #1300000000: Seven Card Hi/Lo Normal $0.02/$0.04 - 2009-03-18 19:10:00 (ET)
|
||||
Seat 1 - PLAYER1 ($0.17 in chips)
|
||||
Seat 2 - PLAYER2 ($0.36 in chips)
|
||||
Seat 3 - PLAYER3 ($3.46 in chips)
|
||||
Seat 5 - PLAYER4 ($1 in chips)
|
||||
Seat 6 - PLAYER5 ($1.07 in chips)
|
||||
Seat 7 - PLAYER6 ($2.31 in chips)
|
||||
Seat 8 - PLAYER7 ($0.93 in chips)
|
||||
Player1 - Ante $0.01
|
||||
PLAYER5 - Ante $0.01
|
||||
PLAYER6 - Ante $0.01
|
||||
PLAYER3 - Ante $0.01
|
||||
PLAYER7 - Ante $0.01
|
||||
PLAYER2 - Ante $0.01
|
||||
PLAYER4 - Ante $0.01
|
||||
*** 3rd STREET ***
|
||||
Player1 - Pocket [H H Js]
|
||||
PLAYER2 - Pocket [H H 7h]
|
||||
PLAYER3 - Pocket [H H 6s]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER5 - Pocket [H H Qh]
|
||||
PLAYER6 - Pocket [H H 9c]
|
||||
PLAYER7 - Pocket [H H 3s]
|
||||
PLAYER7 - Bring-In $0.01
|
||||
Player1 - Calls $0.01
|
||||
PLAYER2 - Folds
|
||||
PLAYER3 - Calls $0.01
|
||||
PLAYER4 - Folds
|
||||
PLAYER5 - Folds
|
||||
PLAYER6 - Calls $0.01
|
||||
*** 4TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d]
|
||||
PLAYER3 - Pocket [H H 6s Ah]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks]
|
||||
PLAYER7 - Pocket [H H 3s Qc]
|
||||
PLAYER3 - Checks
|
||||
PLAYER6 - Checks
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
*** 5TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d Kh]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c]
|
||||
PLAYER3 - Bets $0.04
|
||||
PLAYER6 - Calls $0.04
|
||||
PLAYER7 - Calls $0.04
|
||||
Player1 - Calls $0.04
|
||||
*** 6TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d Kh 2c]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c Jc]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s 8h]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c Qs]
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
PLAYER3 - Bets $0.04
|
||||
PLAYER6 - Calls $0.04
|
||||
PLAYER7 - Calls $0.04
|
||||
Player1 - Calls $0.04
|
||||
*** RIVER ***
|
||||
Player1 - Pocket [H H Js 10d Kh 2c H]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c Jc H]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s 8h H]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c Qs H]
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
PLAYER3 - Checks
|
||||
PLAYER6 - Checks
|
||||
*** SHOW DOWN ***
|
||||
PLAYER7 - Shows [5s 8d 3s Qc 6c Qs 9s] (One pair, queens)
|
||||
Player1 - Shows [Jh 3h Js 10d Kh 2c 2h] (Two Pair, jacks and twos)
|
||||
PLAYER3 - Shows [3d 5d 6s Ah 8c Jc As] (One pair, aces)
|
||||
PLAYER6 - Shows [Kc 10h 9c Ks 10s 8h 2s] (Two Pair, kings and tens)
|
||||
PLAYER3 Collects $0.19 from main pot
|
||||
PLAYER6 Collects $0.20 from main pot
|
||||
*** SUMMARY ***
|
||||
Total Pot($0.43) | Rake ($0.04)
|
||||
Seat 1: Player1 HI:lost with Two Pair, jacks and twos [Jh 3h Js 10d Kh 2c 2h - B:Js,P:Jh,P:2h,B:2c,B:Kh]
|
||||
Seat 2: PLAYER2 Folded on the 3rd STREET
|
||||
Seat 3: PLAYER3 won Total ($0.19) HI:with One pair, aces [3d 5d 6s Ah 8c Jc As - P:As,B:Ah,B:Jc,B:8c,B:6s] LO:($0.19) [B:Ah,P:3d,P:5d,B:6s,B:8c]
|
||||
Seat 5: PLAYER4 Folded on the 3rd STREET
|
||||
Seat 6: PLAYER5 Folded on the 3rd STREET
|
||||
Seat 7: PLAYER6 won Total ($0.20) HI:($0.20) with Two Pair, kings and tens [Kc 10h 9c Ks 10s 8h 2s - B:Ks,P:Kc,B:10s,P:10h,B:9c]
|
||||
Seat 8: PLAYER7 HI:lost with One pair, queens [5s 8d 3s Qc 6c Qs 9s - B:Qs,B:Qc,P:9s,P:8d,B:6c]
|
||||
|
||||
|
||||
|
||||
Stage #1300000000: Seven Card Hi/Lo Normal $0.02/$0.04 - 2009-03-18 19:10:00 (ET)
|
||||
Seat 1 - PLAYER1 ($0.17 in chips)
|
||||
Seat 2 - PLAYER2 ($0.36 in chips)
|
||||
Seat 3 - PLAYER3 ($3.46 in chips)
|
||||
Seat 5 - PLAYER4 ($1 in chips)
|
||||
Seat 6 - PLAYER5 ($1.07 in chips)
|
||||
Seat 7 - PLAYER6 ($2.31 in chips)
|
||||
Seat 8 - PLAYER7 ($0.93 in chips)
|
||||
Player1 - Ante $0.01
|
||||
PLAYER5 - Ante $0.01
|
||||
PLAYER6 - Ante $0.01
|
||||
PLAYER3 - Ante $0.01
|
||||
PLAYER7 - Ante $0.01
|
||||
PLAYER2 - Ante $0.01
|
||||
PLAYER4 - Ante $0.01
|
||||
*** 3rd STREET ***
|
||||
Player1 - Pocket [H H Js]
|
||||
PLAYER2 - Pocket [H H 7h]
|
||||
PLAYER3 - Pocket [H H 6s]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER5 - Pocket [H H Qh]
|
||||
PLAYER6 - Pocket [H H 9c]
|
||||
PLAYER7 - Pocket [H H 3s]
|
||||
PLAYER7 - Bring-In $0.01
|
||||
Player1 - Calls $0.01
|
||||
PLAYER2 - Folds
|
||||
PLAYER3 - Calls $0.01
|
||||
PLAYER4 - Folds
|
||||
PLAYER5 - Folds
|
||||
PLAYER6 - Calls $0.01
|
||||
*** 4TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d]
|
||||
PLAYER3 - Pocket [H H 6s Ah]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks]
|
||||
PLAYER7 - Pocket [H H 3s Qc]
|
||||
PLAYER3 - Checks
|
||||
PLAYER6 - Checks
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
*** 5TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d Kh]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c]
|
||||
PLAYER3 - Bets $0.04
|
||||
PLAYER6 - Calls $0.04
|
||||
PLAYER7 - Calls $0.04
|
||||
Player1 - Calls $0.04
|
||||
*** 6TH STREET ***
|
||||
Player1 - Pocket [H H Js 10d Kh 2c]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c Jc]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s 8h]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c Qs]
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
PLAYER3 - Bets $0.04
|
||||
PLAYER6 - Calls $0.04
|
||||
PLAYER7 - Calls $0.04
|
||||
Player1 - Calls $0.04
|
||||
*** RIVER ***
|
||||
Player1 - Pocket [H H Js 10d Kh 2c H]
|
||||
PLAYER3 - Pocket [H H 6s Ah 8c Jc H]
|
||||
PLAYER4 - Pocket [10c 5c 7s]
|
||||
PLAYER6 - Pocket [H H 9c Ks 10s 8h H]
|
||||
PLAYER7 - Pocket [H H 3s Qc 6c Qs H]
|
||||
PLAYER7 - Checks
|
||||
Player1 - Checks
|
||||
PLAYER3 - Checks
|
||||
PLAYER6 - Checks
|
||||
*** SHOW DOWN ***
|
||||
PLAYER7 - Shows [5s 8d 3s Qc 6c Qs 9s] (One pair, queens)
|
||||
Player1 - Shows [Jh 3h Js 10d Kh 2c 2h] (Two Pair, jacks and twos)
|
||||
PLAYER3 - Shows [3d 5d 6s Ah 8c Jc As] (One pair, aces)
|
||||
PLAYER6 - Shows [Kc 10h 9c Ks 10s 8h 2s] (Two Pair, kings and tens)
|
||||
PLAYER3 Collects $0.19 from main pot
|
||||
PLAYER6 Collects $0.20 from main pot
|
||||
*** SUMMARY ***
|
||||
Total Pot($0.43) | Rake ($0.04)
|
||||
Seat 1: Player1 HI:lost with Two Pair, jacks and twos [Jh 3h Js 10d Kh 2c 2h - B:Js,P:Jh,P:2h,B:2c,B:Kh]
|
||||
Seat 2: PLAYER2 Folded on the 3rd STREET
|
||||
Seat 3: PLAYER3 won Total ($0.19) HI:with One pair, aces [3d 5d 6s Ah 8c Jc As - P:As,B:Ah,B:Jc,B:8c,B:6s] LO:($0.19) [B:Ah,P:3d,P:5d,B:6s,B:8c]
|
||||
Seat 5: PLAYER4 Folded on the 3rd STREET
|
||||
Seat 6: PLAYER5 Folded on the 3rd STREET
|
||||
Seat 7: PLAYER6 won Total ($0.20) HI:($0.20) with Two Pair, kings and tens [Kc 10h 9c Ks 10s 8h 2s - B:Ks,P:Kc,B:10s,P:10h,B:9c]
|
||||
Seat 8: PLAYER7 HI:lost with One pair, queens [5s 8d 3s Qc 6c Qs 9s - B:Qs,B:Qc,P:9s,P:8d,B:6c]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,53 +1,53 @@
|
|||
<description type="Holdem" stakes="No Limit ($0.25/$0.50)"/>
|
||||
<game id="15245216-1000" starttime="20081013150000" numholecards="2" gametype="2" realmoney="true" data="20081013|Niagara Falls (15245216)|15245216|15245216-1000|false">
|
||||
<players dealer="8">
|
||||
<player seat="3" nickname="Player1" balance="$34.13" dealtin="true" />
|
||||
<player seat="2" nickname="Player2" balance="$49.25" dealtin="true" />
|
||||
<player seat="1" nickname="Player3" balance="$55.64" dealtin="true" />
|
||||
<player seat="0" nickname="Player4" balance="$19.72" dealtin="true" />
|
||||
<player seat="7" nickname="Player5" balance="$25.16" dealtin="true" />
|
||||
<player seat="6" nickname="Player6" balance="$56.44" dealtin="false" />
|
||||
<player seat="5" nickname="Player7" balance="$43.52" dealtin="true" />
|
||||
<player seat="4" nickname="Player8" balance="$28.67" dealtin="true" />
|
||||
<player seat="8" nickname="Player9" balance="$9.25" dealtin="true" />
|
||||
</players>
|
||||
<round id="BLINDS" sequence="1">
|
||||
<event sequence="1" type="SMALL_BLIND" player="0" amount="0.25"/>
|
||||
<event sequence="2" type="BIG_BLIND" player="1" amount="0.50"/>
|
||||
</round>
|
||||
<round id="PREFLOP" sequence="2">
|
||||
<event sequence="3" type="FOLD" player="2"/>
|
||||
<event sequence="4" type="FOLD" player="3"/>
|
||||
<event sequence="5" type="RAISE" player="4" amount="1.00"/>
|
||||
<event sequence="6" type="FOLD" player="5"/>
|
||||
<event sequence="7" type="CALL" player="7" amount="1.00"/>
|
||||
<event sequence="8" type="FOLD" player="8"/>
|
||||
<event sequence="9" type="FOLD" player="0"/>
|
||||
<event sequence="10" type="RAISE" player="1" amount="5.00"/>
|
||||
<event sequence="11" type="CALL" player="4" amount="4.50"/>
|
||||
<event sequence="12" type="FOLD" player="7"/>
|
||||
<cards type="HOLE" cards="Ah,8s" player="2" hand="Ace High"/>
|
||||
</round>
|
||||
<round id="POSTFLOP" sequence="3">
|
||||
<event sequence="13" type="BET" player="1" amount="7.00"/>
|
||||
<event sequence="14" type="CALL" player="4" amount="7.00"/>
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd" hand="Ace High"/>
|
||||
</round>
|
||||
<round id="POSTTURN" sequence="4">
|
||||
<event sequence="15" type="BET" player="1" amount="18.00"/>
|
||||
<event sequence="16" type="ALL_IN" player="4" amount="16.17"/>
|
||||
<event sequence="17" type="SHOW" player="1"/>
|
||||
<event sequence="18" type="SHOW" player="4"/>
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd,3d" hand="Pair of Threes"/>
|
||||
<cards type="SHOWN" cards="Ad,3s" player="1"/>
|
||||
<cards type="SHOWN" cards="Qd,Qs" player="4"/>
|
||||
</round>
|
||||
<round id="POSTRIVER" sequence="5">
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd,3d,Ks" hand="Two Pair Kings and Threes"/>
|
||||
</round>
|
||||
<round id="END_OF_GAME" sequence="6">
|
||||
<winner amount="55.67" uncalled="false" potnumber="1" player="1" hand="Full House - Threes over Kings" pottype="n"/>
|
||||
<winner amount="1.83" uncalled="true" potnumber="2" player="1" hand="Full House - Threes over Kings" pottype="n"/>
|
||||
</round>
|
||||
</game>
|
||||
|
||||
<description type="Holdem" stakes="No Limit ($0.25/$0.50)"/>
|
||||
<game id="15245216-1000" starttime="20081013150000" numholecards="2" gametype="2" realmoney="true" data="20081013|Niagara Falls (15245216)|15245216|15245216-1000|false">
|
||||
<players dealer="8">
|
||||
<player seat="3" nickname="Player1" balance="$34.13" dealtin="true" />
|
||||
<player seat="2" nickname="Player2" balance="$49.25" dealtin="true" />
|
||||
<player seat="1" nickname="Player3" balance="$55.64" dealtin="true" />
|
||||
<player seat="0" nickname="Player4" balance="$19.72" dealtin="true" />
|
||||
<player seat="7" nickname="Player5" balance="$25.16" dealtin="true" />
|
||||
<player seat="6" nickname="Player6" balance="$56.44" dealtin="false" />
|
||||
<player seat="5" nickname="Player7" balance="$43.52" dealtin="true" />
|
||||
<player seat="4" nickname="Player8" balance="$28.67" dealtin="true" />
|
||||
<player seat="8" nickname="Player9" balance="$9.25" dealtin="true" />
|
||||
</players>
|
||||
<round id="BLINDS" sequence="1">
|
||||
<event sequence="1" type="SMALL_BLIND" player="0" amount="0.25"/>
|
||||
<event sequence="2" type="BIG_BLIND" player="1" amount="0.50"/>
|
||||
</round>
|
||||
<round id="PREFLOP" sequence="2">
|
||||
<event sequence="3" type="FOLD" player="2"/>
|
||||
<event sequence="4" type="FOLD" player="3"/>
|
||||
<event sequence="5" type="RAISE" player="4" amount="1.00"/>
|
||||
<event sequence="6" type="FOLD" player="5"/>
|
||||
<event sequence="7" type="CALL" player="7" amount="1.00"/>
|
||||
<event sequence="8" type="FOLD" player="8"/>
|
||||
<event sequence="9" type="FOLD" player="0"/>
|
||||
<event sequence="10" type="RAISE" player="1" amount="5.00"/>
|
||||
<event sequence="11" type="CALL" player="4" amount="4.50"/>
|
||||
<event sequence="12" type="FOLD" player="7"/>
|
||||
<cards type="HOLE" cards="Ah,8s" player="2" hand="Ace High"/>
|
||||
</round>
|
||||
<round id="POSTFLOP" sequence="3">
|
||||
<event sequence="13" type="BET" player="1" amount="7.00"/>
|
||||
<event sequence="14" type="CALL" player="4" amount="7.00"/>
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd" hand="Ace High"/>
|
||||
</round>
|
||||
<round id="POSTTURN" sequence="4">
|
||||
<event sequence="15" type="BET" player="1" amount="18.00"/>
|
||||
<event sequence="16" type="ALL_IN" player="4" amount="16.17"/>
|
||||
<event sequence="17" type="SHOW" player="1"/>
|
||||
<event sequence="18" type="SHOW" player="4"/>
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd,3d" hand="Pair of Threes"/>
|
||||
<cards type="SHOWN" cards="Ad,3s" player="1"/>
|
||||
<cards type="SHOWN" cards="Qd,Qs" player="4"/>
|
||||
</round>
|
||||
<round id="POSTRIVER" sequence="5">
|
||||
<cards type="COMMUNITY" cards="5h,3c,Kd,3d,Ks" hand="Two Pair Kings and Threes"/>
|
||||
</round>
|
||||
<round id="END_OF_GAME" sequence="6">
|
||||
<winner amount="55.67" uncalled="false" potnumber="1" player="1" hand="Full House - Threes over Kings" pottype="n"/>
|
||||
<winner amount="1.83" uncalled="true" potnumber="2" player="1" hand="Full House - Threes over Kings" pottype="n"/>
|
||||
</round>
|
||||
</game>
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,153 +1,153 @@
|
|||
***** History for hand R5-81962116-232 *****
|
||||
Start hand: Mon Sep 13 00:21:02 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 4
|
||||
Seat 8: DamonV2 ($0.07)
|
||||
Seat 10: tchazx ($1)
|
||||
Seat 1: x Diabolo666 ($11.23)
|
||||
Seat 3: velabianca ($0.51)
|
||||
DamonV2 posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Tc, 9h, 7c, Ah, Jh]
|
||||
x Diabolo666 raises $0.10 to $0.10
|
||||
velabianca folds
|
||||
DamonV2 folds
|
||||
tchazx calls $0.05
|
||||
---
|
||||
tchazx changed 2 cards
|
||||
New hand for tchazx: [8h, 9h, 6s, Ah, Jh]
|
||||
x Diabolo666 changed 3 cards
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.22 won by x Diabolo666 ($0.21)
|
||||
Rake taken: $0.01
|
||||
Seat 8: DamonV2 ($0.05), net: -$0.02
|
||||
Seat 10: tchazx ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE)
|
||||
Seat 1: x Diabolo666 ($11.34), net: +$0.11, [2c, Ac, Td, As, Qc] (PAIR ACE)
|
||||
Seat 3: velabianca ($0.51)
|
||||
***** End of hand R5-81962116-232 *****
|
||||
***** History for hand R5-81962116-233 *****
|
||||
Start hand: Mon Sep 13 00:21:42 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: tchazx ($0.90)
|
||||
Seat 1: x Diabolo666 ($11.34)
|
||||
Seat 3: velabianca ($0.51)
|
||||
Seat 4: grommek ($9.40)
|
||||
Seat 8: DamonV2 ($0.05)
|
||||
tchazx posts small blind ($0.02)
|
||||
x Diabolo666 posts big blind ($0.05)
|
||||
grommek posts big blind ($0.05)
|
||||
grommek posts dead blind ($0.02)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Jd, 5s, 8h, 4h, 7d]
|
||||
velabianca calls $0.05
|
||||
grommek checks
|
||||
DamonV2 calls $0.05 [all in]
|
||||
tchazx calls $0.03
|
||||
x Diabolo666 checks
|
||||
---
|
||||
tchazx changed 1 cards
|
||||
New hand for tchazx: [Ah, 5s, 8h, 4h, 7d]
|
||||
x Diabolo666 changed 4 cards
|
||||
velabianca changed 2 cards
|
||||
grommek changed 3 cards
|
||||
DamonV2 changed 2 cards
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
velabianca bets $0.10
|
||||
grommek folds
|
||||
tchazx folds
|
||||
x Diabolo666 folds
|
||||
---
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.27 won by velabianca ($0.26)
|
||||
Rake taken: $0.01
|
||||
Seat 10: tchazx ($0.85), net: -$0.05
|
||||
Seat 1: x Diabolo666 ($11.29), net: -$0.05
|
||||
Seat 3: velabianca ($0.72), net: +$0.21, [As, 9s, 6s, 6c, 9h] (TWO_PAIR NINE, SIX)
|
||||
Seat 4: grommek ($9.33), net: -$0.07
|
||||
Seat 8: DamonV2 ($0), net: -$0.05, [Jh, 2c, Kh, Td, 6h] (HIGH_CARD KING)
|
||||
***** End of hand R5-81962116-233 *****
|
||||
***** History for hand R5-81962116-234 *****
|
||||
Start hand: Mon Sep 13 00:22:36 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 4
|
||||
Seat 1: x Diabolo666 ($11.29)
|
||||
Seat 3: velabianca ($0.72)
|
||||
Seat 4: grommek ($9.33)
|
||||
Seat 10: tchazx ($0.85)
|
||||
x Diabolo666 posts small blind ($0.02)
|
||||
velabianca posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Kh, 9d, As, 4s, 7c]
|
||||
grommek calls $0.05
|
||||
tchazx folds
|
||||
x Diabolo666 folds
|
||||
velabianca checks
|
||||
velabianca changed 3 cards
|
||||
grommek changed 3 cards
|
||||
velabianca checks
|
||||
grommek bets $0.10
|
||||
velabianca folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.12 won by grommek ($0.12)
|
||||
Rake taken: $0
|
||||
Seat 1: x Diabolo666 ($11.27), net: -$0.02
|
||||
Seat 3: velabianca ($0.67), net: -$0.05
|
||||
Seat 4: grommek ($9.40), net: +$0.07
|
||||
Seat 10: tchazx ($0.85)
|
||||
***** End of hand R5-81962116-234 *****
|
||||
***** History for hand R5-81962116-235 *****
|
||||
Start hand: Mon Sep 13 00:23:04 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 1
|
||||
Players in round: 4
|
||||
Seat 3: velabianca ($0.67)
|
||||
Seat 4: grommek ($9.40)
|
||||
Seat 10: tchazx ($0.85)
|
||||
Seat 1: x Diabolo666 ($11.27)
|
||||
velabianca posts small blind ($0.02)
|
||||
grommek posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [8d, Td, 2s, 3d, Qd]
|
||||
tchazx calls $0.05
|
||||
x Diabolo666 raises $0.10 to $0.10
|
||||
velabianca calls $0.08
|
||||
grommek calls $0.05
|
||||
tchazx calls $0.05
|
||||
---
|
||||
velabianca changed 2 cards
|
||||
grommek changed 2 cards
|
||||
tchazx changed 1 cards
|
||||
New hand for tchazx: [8d, Td, 8h, 3d, Qd]
|
||||
x Diabolo666 changed 3 cards
|
||||
velabianca checks
|
||||
grommek checks
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.40 won by velabianca ($0.38)
|
||||
Rake taken: $0.02
|
||||
Seat 3: velabianca ($0.95), net: +$0.28
|
||||
Seat 4: grommek ($9.30), net: -$0.10
|
||||
Seat 10: tchazx ($0.75), net: -$0.10
|
||||
Seat 1: x Diabolo666 ($11.17), net: -$0.10, [6d, Qc, 4c, Th, Qs] (PAIR QUEEN)
|
||||
***** End of hand R5-81962116-235 *****
|
||||
***** History for hand R5-81962116-232 *****
|
||||
Start hand: Mon Sep 13 00:21:02 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 4
|
||||
Seat 8: DamonV2 ($0.07)
|
||||
Seat 10: tchazx ($1)
|
||||
Seat 1: x Diabolo666 ($11.23)
|
||||
Seat 3: velabianca ($0.51)
|
||||
DamonV2 posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Tc, 9h, 7c, Ah, Jh]
|
||||
x Diabolo666 raises $0.10 to $0.10
|
||||
velabianca folds
|
||||
DamonV2 folds
|
||||
tchazx calls $0.05
|
||||
---
|
||||
tchazx changed 2 cards
|
||||
New hand for tchazx: [8h, 9h, 6s, Ah, Jh]
|
||||
x Diabolo666 changed 3 cards
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.22 won by x Diabolo666 ($0.21)
|
||||
Rake taken: $0.01
|
||||
Seat 8: DamonV2 ($0.05), net: -$0.02
|
||||
Seat 10: tchazx ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE)
|
||||
Seat 1: x Diabolo666 ($11.34), net: +$0.11, [2c, Ac, Td, As, Qc] (PAIR ACE)
|
||||
Seat 3: velabianca ($0.51)
|
||||
***** End of hand R5-81962116-232 *****
|
||||
***** History for hand R5-81962116-233 *****
|
||||
Start hand: Mon Sep 13 00:21:42 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: tchazx ($0.90)
|
||||
Seat 1: x Diabolo666 ($11.34)
|
||||
Seat 3: velabianca ($0.51)
|
||||
Seat 4: grommek ($9.40)
|
||||
Seat 8: DamonV2 ($0.05)
|
||||
tchazx posts small blind ($0.02)
|
||||
x Diabolo666 posts big blind ($0.05)
|
||||
grommek posts big blind ($0.05)
|
||||
grommek posts dead blind ($0.02)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Jd, 5s, 8h, 4h, 7d]
|
||||
velabianca calls $0.05
|
||||
grommek checks
|
||||
DamonV2 calls $0.05 [all in]
|
||||
tchazx calls $0.03
|
||||
x Diabolo666 checks
|
||||
---
|
||||
tchazx changed 1 cards
|
||||
New hand for tchazx: [Ah, 5s, 8h, 4h, 7d]
|
||||
x Diabolo666 changed 4 cards
|
||||
velabianca changed 2 cards
|
||||
grommek changed 3 cards
|
||||
DamonV2 changed 2 cards
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
velabianca bets $0.10
|
||||
grommek folds
|
||||
tchazx folds
|
||||
x Diabolo666 folds
|
||||
---
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.27 won by velabianca ($0.26)
|
||||
Rake taken: $0.01
|
||||
Seat 10: tchazx ($0.85), net: -$0.05
|
||||
Seat 1: x Diabolo666 ($11.29), net: -$0.05
|
||||
Seat 3: velabianca ($0.72), net: +$0.21, [As, 9s, 6s, 6c, 9h] (TWO_PAIR NINE, SIX)
|
||||
Seat 4: grommek ($9.33), net: -$0.07
|
||||
Seat 8: DamonV2 ($0), net: -$0.05, [Jh, 2c, Kh, Td, 6h] (HIGH_CARD KING)
|
||||
***** End of hand R5-81962116-233 *****
|
||||
***** History for hand R5-81962116-234 *****
|
||||
Start hand: Mon Sep 13 00:22:36 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 4
|
||||
Seat 1: x Diabolo666 ($11.29)
|
||||
Seat 3: velabianca ($0.72)
|
||||
Seat 4: grommek ($9.33)
|
||||
Seat 10: tchazx ($0.85)
|
||||
x Diabolo666 posts small blind ($0.02)
|
||||
velabianca posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Kh, 9d, As, 4s, 7c]
|
||||
grommek calls $0.05
|
||||
tchazx folds
|
||||
x Diabolo666 folds
|
||||
velabianca checks
|
||||
velabianca changed 3 cards
|
||||
grommek changed 3 cards
|
||||
velabianca checks
|
||||
grommek bets $0.10
|
||||
velabianca folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.12 won by grommek ($0.12)
|
||||
Rake taken: $0
|
||||
Seat 1: x Diabolo666 ($11.27), net: -$0.02
|
||||
Seat 3: velabianca ($0.67), net: -$0.05
|
||||
Seat 4: grommek ($9.40), net: +$0.07
|
||||
Seat 10: tchazx ($0.85)
|
||||
***** End of hand R5-81962116-234 *****
|
||||
***** History for hand R5-81962116-235 *****
|
||||
Start hand: Mon Sep 13 00:23:04 GMT+0100 2010
|
||||
Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 1
|
||||
Players in round: 4
|
||||
Seat 3: velabianca ($0.67)
|
||||
Seat 4: grommek ($9.40)
|
||||
Seat 10: tchazx ($0.85)
|
||||
Seat 1: x Diabolo666 ($11.27)
|
||||
velabianca posts small blind ($0.02)
|
||||
grommek posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [8d, Td, 2s, 3d, Qd]
|
||||
tchazx calls $0.05
|
||||
x Diabolo666 raises $0.10 to $0.10
|
||||
velabianca calls $0.08
|
||||
grommek calls $0.05
|
||||
tchazx calls $0.05
|
||||
---
|
||||
velabianca changed 2 cards
|
||||
grommek changed 2 cards
|
||||
tchazx changed 1 cards
|
||||
New hand for tchazx: [8d, Td, 8h, 3d, Qd]
|
||||
x Diabolo666 changed 3 cards
|
||||
velabianca checks
|
||||
grommek checks
|
||||
tchazx checks
|
||||
x Diabolo666 checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.40 won by velabianca ($0.38)
|
||||
Rake taken: $0.02
|
||||
Seat 3: velabianca ($0.95), net: +$0.28
|
||||
Seat 4: grommek ($9.30), net: -$0.10
|
||||
Seat 10: tchazx ($0.75), net: -$0.10
|
||||
Seat 1: x Diabolo666 ($11.17), net: -$0.10, [6d, Qc, 4c, Th, Qs] (PAIR QUEEN)
|
||||
***** End of hand R5-81962116-235 *****
|
||||
|
|
|
@ -1,444 +1,444 @@
|
|||
***** History for hand R5-81867677-656 *****
|
||||
Start hand: Mon Sep 13 00:26:26 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 3
|
||||
Seat 3: nickgerm ($3.74)
|
||||
Seat 4: tchazx ($5)
|
||||
Seat 8: XYXY26XYXY ($1.79)
|
||||
nickgerm posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ks, 4s, 6s, Th]
|
||||
XYXY26XYXY calls $0.05
|
||||
nickgerm calls $0.03
|
||||
tchazx checks
|
||||
--- Dealing flop [5h, 7d, 2s]
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
--- Dealing turn [Qs]
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
--- Dealing river [4d]
|
||||
nickgerm bets $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.15 won by nickgerm ($0.15)
|
||||
Rake taken: $0
|
||||
Seat 3: nickgerm ($3.84), net: +$0.10
|
||||
Seat 4: tchazx ($4.95), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($1.74), net: -$0.05
|
||||
***** End of hand R5-81867677-656 *****
|
||||
***** History for hand R5-81867677-657 *****
|
||||
Start hand: Mon Sep 13 00:27:13 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 3
|
||||
Seat 4: tchazx ($4.95)
|
||||
Seat 8: XYXY26XYXY ($1.74)
|
||||
Seat 3: nickgerm ($3.84)
|
||||
tchazx posts small blind ($0.02)
|
||||
XYXY26XYXY posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Jd, Td, 8h, Tc]
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.03
|
||||
XYXY26XYXY checks
|
||||
--- Dealing flop [4h, 7c, 2c]
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
nickgerm checks
|
||||
--- Dealing turn [Kc]
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
nickgerm bets $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.10
|
||||
--- Dealing river [3d]
|
||||
XYXY26XYXY checks
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.55 won by nickgerm ($0.27), XYXY26XYXY ($0.26)
|
||||
Rake taken: $0.02
|
||||
Seat 4: tchazx ($4.90), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($1.75), net: +$0.01, [7h, Qs, 9c, Kd] (TWO_PAIR KING, SEVEN)
|
||||
Seat 3: nickgerm ($3.86), net: +$0.02, [7d, 6s, Ks, Jc] (TWO_PAIR KING, SEVEN)
|
||||
***** End of hand R5-81867677-657 *****
|
||||
***** History for hand R5-81867677-658 *****
|
||||
Start hand: Mon Sep 13 00:28:06 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 4
|
||||
Players in round: 5
|
||||
Seat 8: XYXY26XYXY ($1.75)
|
||||
Seat 10: Mandala14 ($3)
|
||||
Seat 1: ANOKATO ($2.33)
|
||||
Seat 3: nickgerm ($3.86)
|
||||
Seat 4: tchazx ($4.90)
|
||||
XYXY26XYXY posts small blind ($0.02)
|
||||
Mandala14 posts big blind ($0.05)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ad, Js, Jc, 9h]
|
||||
ANOKATO checks
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY calls $0.08
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [6h, 2s, 5c]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.05
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY folds
|
||||
Mandala14 calls $0.10
|
||||
ANOKATO raises $0.10 to $0.15
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [Kh]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm calls $0.10
|
||||
tchazx calls $0.10
|
||||
Mandala14 calls $0.10
|
||||
--- Dealing river [Ks]
|
||||
Mandala14 bets $0.10
|
||||
ANOKATO calls $0.10
|
||||
nickgerm folds
|
||||
tchazx calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.80 won by Mandala14 ($1.71)
|
||||
Rake taken: $0.09
|
||||
Seat 8: XYXY26XYXY ($1.65), net: -$0.10
|
||||
Seat 10: Mandala14 ($4.26), net: +$1.26, [As, Ah, 5s, Qs] (TWO_PAIR ACE, KING)
|
||||
Seat 1: ANOKATO ($1.88), net: -$0.45
|
||||
Seat 3: nickgerm ($3.51), net: -$0.35
|
||||
Seat 4: tchazx ($4.45), net: -$0.45
|
||||
***** End of hand R5-81867677-658 *****
|
||||
***** History for hand R5-81867677-659 *****
|
||||
Start hand: Mon Sep 13 00:29:21 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: Mandala14 ($4.26)
|
||||
Seat 1: ANOKATO ($1.88)
|
||||
Seat 3: nickgerm ($3.51)
|
||||
Seat 4: tchazx ($4.45)
|
||||
Seat 8: XYXY26XYXY ($1.65)
|
||||
Mandala14 posts small blind ($0.02)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5h, Tc, 9c, 3h]
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
Mandala14 calls $0.08
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [8s, 4d, 6d]
|
||||
Mandala14 checks
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [9s]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.20
|
||||
Mandala14 calls $0.20
|
||||
ANOKATO raises $0.20 to $0.30
|
||||
nickgerm calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
Mandala14 calls $0.10
|
||||
--- Dealing river [4c]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm folds
|
||||
XYXY26XYXY folds
|
||||
Mandala14 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.95 won by ANOKATO ($1.86)
|
||||
Rake taken: $0.09
|
||||
Seat 10: Mandala14 ($3.81), net: -$0.45
|
||||
Seat 1: ANOKATO ($3.29), net: +$1.41
|
||||
Seat 3: nickgerm ($3.06), net: -$0.45
|
||||
Seat 4: tchazx ($4.30), net: -$0.15
|
||||
Seat 8: XYXY26XYXY ($1.20), net: -$0.45
|
||||
***** End of hand R5-81867677-659 *****
|
||||
***** History for hand R5-81867677-660 *****
|
||||
Start hand: Mon Sep 13 00:30:43 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 5
|
||||
Seat 1: ANOKATO ($3.29)
|
||||
Seat 3: nickgerm ($3.06)
|
||||
Seat 4: tchazx ($4.30)
|
||||
Seat 8: XYXY26XYXY ($1.20)
|
||||
Seat 10: Mandala14 ($3.81)
|
||||
ANOKATO posts small blind ($0.02)
|
||||
nickgerm posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Qh, 4d, Ts, 9d]
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.03
|
||||
nickgerm raises $0.05 to $0.10
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [6d, 3c, Qc]
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [7h]
|
||||
ANOKATO checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
--- Dealing river [Jh]
|
||||
ANOKATO bets $0.10
|
||||
nickgerm folds
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY folds
|
||||
Mandala14 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.95 won by ANOKATO ($0.91)
|
||||
Rake taken: $0.04
|
||||
Seat 1: ANOKATO ($3.95), net: +$0.66, [7c, Qd, Ks, 5d] (TWO_PAIR QUEEN, SEVEN)
|
||||
Seat 3: nickgerm ($2.91), net: -$0.15
|
||||
Seat 4: tchazx ($4.05), net: -$0.25
|
||||
Seat 8: XYXY26XYXY ($1.05), net: -$0.15
|
||||
Seat 10: Mandala14 ($3.66), net: -$0.15
|
||||
***** End of hand R5-81867677-660 *****
|
||||
***** History for hand R5-81867677-661 *****
|
||||
Start hand: Mon Sep 13 00:31:54 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 1
|
||||
Players in round: 5
|
||||
Seat 3: nickgerm ($2.91)
|
||||
Seat 4: tchazx ($4.05)
|
||||
Seat 8: XYXY26XYXY ($1.05)
|
||||
Seat 10: Mandala14 ($3.66)
|
||||
Seat 1: ANOKATO ($3.95)
|
||||
nickgerm posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5d, 9h, 6h, 4h]
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
nickgerm calls $0.03
|
||||
tchazx checks
|
||||
--- Dealing flop [2d, 4d, Jh]
|
||||
nickgerm bets $0.05
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 folds
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [As]
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
--- Dealing river [Jc]
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm raises $0.20 to $0.30
|
||||
XYXY26XYXY folds
|
||||
ANOKATO calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.70 won by nickgerm ($1.62)
|
||||
Rake taken: $0.08
|
||||
Seat 3: nickgerm ($3.93), net: +$1.02, [9c, 4s, Jd, 6c] (FULL_HOUSE JACK, FOUR)
|
||||
Seat 4: tchazx ($4), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($0.65), net: -$0.40
|
||||
Seat 10: Mandala14 ($3.61), net: -$0.05
|
||||
Seat 1: ANOKATO ($3.35), net: -$0.60
|
||||
***** End of hand R5-81867677-661 *****
|
||||
***** History for hand R5-81867677-662 *****
|
||||
Start hand: Mon Sep 13 00:33:20 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 5
|
||||
Seat 4: tchazx ($4)
|
||||
Seat 8: XYXY26XYXY ($0.65)
|
||||
Seat 10: Mandala14 ($3.61)
|
||||
Seat 1: ANOKATO ($3.35)
|
||||
Seat 3: nickgerm ($3.93)
|
||||
tchazx posts small blind ($0.02)
|
||||
XYXY26XYXY posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5s, 6c, Kc, 3s]
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [3h, 2d, 2s]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 folds
|
||||
ANOKATO raises $0.10 to $0.10
|
||||
nickgerm calls $0.05
|
||||
XYXY26XYXY folds
|
||||
--- Dealing turn [4d]
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm calls $0.10
|
||||
--- Dealing river [Ts]
|
||||
ANOKATO checks
|
||||
nickgerm checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.07 won by ANOKATO ($1.02)
|
||||
Rake taken: $0.05
|
||||
Seat 4: tchazx ($3.98), net: -$0.02
|
||||
Seat 8: XYXY26XYXY ($0.50), net: -$0.15
|
||||
Seat 10: Mandala14 ($3.51), net: -$0.10
|
||||
Seat 1: ANOKATO ($3.97), net: +$0.62, [Js, 5c, 9c, 2h] (THREE_OF_A_KIND TWO)
|
||||
Seat 3: nickgerm ($3.53), net: -$0.40
|
||||
***** End of hand R5-81867677-662 *****
|
||||
***** History for hand R5-81867677-663 *****
|
||||
Start hand: Mon Sep 13 00:34:34 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 4
|
||||
Players in round: 5
|
||||
Seat 8: XYXY26XYXY ($0.50)
|
||||
Seat 10: Mandala14 ($3.51)
|
||||
Seat 1: ANOKATO ($3.97)
|
||||
Seat 3: nickgerm ($3.53)
|
||||
Seat 4: tchazx ($3.98)
|
||||
XYXY26XYXY posts small blind ($0.02)
|
||||
Mandala14 posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ac, 9h, 6h, Jc]
|
||||
ANOKATO calls $0.05
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.03
|
||||
Mandala14 checks
|
||||
--- Dealing flop [7s, 4c, 8s]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.05
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [2d]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx calls $0.20
|
||||
XYXY26XYXY calls $0.20
|
||||
Mandala14 calls $0.20
|
||||
ANOKATO calls $0.10
|
||||
--- Dealing river [4h]
|
||||
XYXY26XYXY bets $0.10
|
||||
Mandala14 folds
|
||||
ANOKATO calls $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.10 [all in]
|
||||
ANOKATO folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $2 won by XYXY26XYXY ($1.90)
|
||||
Rake taken: $0.10
|
||||
Seat 8: XYXY26XYXY ($1.90), net: +$1.40, [8d, 5c, 4d, 3c] (FULL_HOUSE FOUR, EIGHT)
|
||||
Seat 10: Mandala14 ($3.21), net: -$0.30
|
||||
Seat 1: ANOKATO ($3.57), net: -$0.40
|
||||
Seat 3: nickgerm ($3.03), net: -$0.50, [6s, Th, 3d, 5d] (STRAIGHT EIGHT)
|
||||
Seat 4: tchazx ($3.68), net: -$0.30
|
||||
***** End of hand R5-81867677-663 *****
|
||||
***** History for hand R5-81867677-664 *****
|
||||
Start hand: Mon Sep 13 00:36:21 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: Mandala14 ($3.21)
|
||||
Seat 1: ANOKATO ($3.57)
|
||||
Seat 3: nickgerm ($3.03)
|
||||
Seat 4: tchazx ($3.68)
|
||||
Seat 8: XYXY26XYXY ($1.90)
|
||||
Mandala14 posts small blind ($0.02)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [7d, Kh, 4s, Jh]
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY folds
|
||||
Mandala14 calls $0.03
|
||||
ANOKATO checks
|
||||
--- Dealing flop [4h, Js, Ac]
|
||||
Mandala14 checks
|
||||
ANOKATO folds
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [8c]
|
||||
Mandala14 checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
--- Dealing river [3d]
|
||||
Mandala14 checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.35 won by tchazx ($0.34)
|
||||
Rake taken: $0.01
|
||||
Seat 10: Mandala14 ($3.11), net: -$0.10, [7h, 4d, Qh, 6d] (PAIR FOUR)
|
||||
Seat 1: ANOKATO ($3.52), net: -$0.05
|
||||
Seat 3: nickgerm ($2.93), net: -$0.10, [7s, Qd, 6s, Ah] (PAIR ACE)
|
||||
Seat 4: tchazx ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR)
|
||||
Seat 8: XYXY26XYXY ($1.90)
|
||||
***** End of hand R5-81867677-664 *****
|
||||
***** History for hand R5-81867677-656 *****
|
||||
Start hand: Mon Sep 13 00:26:26 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 3
|
||||
Seat 3: nickgerm ($3.74)
|
||||
Seat 4: tchazx ($5)
|
||||
Seat 8: XYXY26XYXY ($1.79)
|
||||
nickgerm posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ks, 4s, 6s, Th]
|
||||
XYXY26XYXY calls $0.05
|
||||
nickgerm calls $0.03
|
||||
tchazx checks
|
||||
--- Dealing flop [5h, 7d, 2s]
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
--- Dealing turn [Qs]
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
--- Dealing river [4d]
|
||||
nickgerm bets $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.15 won by nickgerm ($0.15)
|
||||
Rake taken: $0
|
||||
Seat 3: nickgerm ($3.84), net: +$0.10
|
||||
Seat 4: tchazx ($4.95), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($1.74), net: -$0.05
|
||||
***** End of hand R5-81867677-656 *****
|
||||
***** History for hand R5-81867677-657 *****
|
||||
Start hand: Mon Sep 13 00:27:13 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 3
|
||||
Seat 4: tchazx ($4.95)
|
||||
Seat 8: XYXY26XYXY ($1.74)
|
||||
Seat 3: nickgerm ($3.84)
|
||||
tchazx posts small blind ($0.02)
|
||||
XYXY26XYXY posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Jd, Td, 8h, Tc]
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.03
|
||||
XYXY26XYXY checks
|
||||
--- Dealing flop [4h, 7c, 2c]
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
nickgerm checks
|
||||
--- Dealing turn [Kc]
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
nickgerm bets $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.10
|
||||
--- Dealing river [3d]
|
||||
XYXY26XYXY checks
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.55 won by nickgerm ($0.27), XYXY26XYXY ($0.26)
|
||||
Rake taken: $0.02
|
||||
Seat 4: tchazx ($4.90), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($1.75), net: +$0.01, [7h, Qs, 9c, Kd] (TWO_PAIR KING, SEVEN)
|
||||
Seat 3: nickgerm ($3.86), net: +$0.02, [7d, 6s, Ks, Jc] (TWO_PAIR KING, SEVEN)
|
||||
***** End of hand R5-81867677-657 *****
|
||||
***** History for hand R5-81867677-658 *****
|
||||
Start hand: Mon Sep 13 00:28:06 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 4
|
||||
Players in round: 5
|
||||
Seat 8: XYXY26XYXY ($1.75)
|
||||
Seat 10: Mandala14 ($3)
|
||||
Seat 1: ANOKATO ($2.33)
|
||||
Seat 3: nickgerm ($3.86)
|
||||
Seat 4: tchazx ($4.90)
|
||||
XYXY26XYXY posts small blind ($0.02)
|
||||
Mandala14 posts big blind ($0.05)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ad, Js, Jc, 9h]
|
||||
ANOKATO checks
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY calls $0.08
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [6h, 2s, 5c]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.05
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY folds
|
||||
Mandala14 calls $0.10
|
||||
ANOKATO raises $0.10 to $0.15
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [Kh]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm calls $0.10
|
||||
tchazx calls $0.10
|
||||
Mandala14 calls $0.10
|
||||
--- Dealing river [Ks]
|
||||
Mandala14 bets $0.10
|
||||
ANOKATO calls $0.10
|
||||
nickgerm folds
|
||||
tchazx calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.80 won by Mandala14 ($1.71)
|
||||
Rake taken: $0.09
|
||||
Seat 8: XYXY26XYXY ($1.65), net: -$0.10
|
||||
Seat 10: Mandala14 ($4.26), net: +$1.26, [As, Ah, 5s, Qs] (TWO_PAIR ACE, KING)
|
||||
Seat 1: ANOKATO ($1.88), net: -$0.45
|
||||
Seat 3: nickgerm ($3.51), net: -$0.35
|
||||
Seat 4: tchazx ($4.45), net: -$0.45
|
||||
***** End of hand R5-81867677-658 *****
|
||||
***** History for hand R5-81867677-659 *****
|
||||
Start hand: Mon Sep 13 00:29:21 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: Mandala14 ($4.26)
|
||||
Seat 1: ANOKATO ($1.88)
|
||||
Seat 3: nickgerm ($3.51)
|
||||
Seat 4: tchazx ($4.45)
|
||||
Seat 8: XYXY26XYXY ($1.65)
|
||||
Mandala14 posts small blind ($0.02)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5h, Tc, 9c, 3h]
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
Mandala14 calls $0.08
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [8s, 4d, 6d]
|
||||
Mandala14 checks
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [9s]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.20
|
||||
Mandala14 calls $0.20
|
||||
ANOKATO raises $0.20 to $0.30
|
||||
nickgerm calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
Mandala14 calls $0.10
|
||||
--- Dealing river [4c]
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm folds
|
||||
XYXY26XYXY folds
|
||||
Mandala14 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.95 won by ANOKATO ($1.86)
|
||||
Rake taken: $0.09
|
||||
Seat 10: Mandala14 ($3.81), net: -$0.45
|
||||
Seat 1: ANOKATO ($3.29), net: +$1.41
|
||||
Seat 3: nickgerm ($3.06), net: -$0.45
|
||||
Seat 4: tchazx ($4.30), net: -$0.15
|
||||
Seat 8: XYXY26XYXY ($1.20), net: -$0.45
|
||||
***** End of hand R5-81867677-659 *****
|
||||
***** History for hand R5-81867677-660 *****
|
||||
Start hand: Mon Sep 13 00:30:43 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 5
|
||||
Seat 1: ANOKATO ($3.29)
|
||||
Seat 3: nickgerm ($3.06)
|
||||
Seat 4: tchazx ($4.30)
|
||||
Seat 8: XYXY26XYXY ($1.20)
|
||||
Seat 10: Mandala14 ($3.81)
|
||||
ANOKATO posts small blind ($0.02)
|
||||
nickgerm posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Qh, 4d, Ts, 9d]
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.03
|
||||
nickgerm raises $0.05 to $0.10
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [6d, 3c, Qc]
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [7h]
|
||||
ANOKATO checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
--- Dealing river [Jh]
|
||||
ANOKATO bets $0.10
|
||||
nickgerm folds
|
||||
tchazx calls $0.10
|
||||
XYXY26XYXY folds
|
||||
Mandala14 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.95 won by ANOKATO ($0.91)
|
||||
Rake taken: $0.04
|
||||
Seat 1: ANOKATO ($3.95), net: +$0.66, [7c, Qd, Ks, 5d] (TWO_PAIR QUEEN, SEVEN)
|
||||
Seat 3: nickgerm ($2.91), net: -$0.15
|
||||
Seat 4: tchazx ($4.05), net: -$0.25
|
||||
Seat 8: XYXY26XYXY ($1.05), net: -$0.15
|
||||
Seat 10: Mandala14 ($3.66), net: -$0.15
|
||||
***** End of hand R5-81867677-660 *****
|
||||
***** History for hand R5-81867677-661 *****
|
||||
Start hand: Mon Sep 13 00:31:54 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 1
|
||||
Players in round: 5
|
||||
Seat 3: nickgerm ($2.91)
|
||||
Seat 4: tchazx ($4.05)
|
||||
Seat 8: XYXY26XYXY ($1.05)
|
||||
Seat 10: Mandala14 ($3.66)
|
||||
Seat 1: ANOKATO ($3.95)
|
||||
nickgerm posts small blind ($0.02)
|
||||
tchazx posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5d, 9h, 6h, 4h]
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
nickgerm calls $0.03
|
||||
tchazx checks
|
||||
--- Dealing flop [2d, 4d, Jh]
|
||||
nickgerm bets $0.05
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 folds
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing turn [As]
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm calls $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
--- Dealing river [Jc]
|
||||
nickgerm bets $0.10
|
||||
XYXY26XYXY calls $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm raises $0.20 to $0.30
|
||||
XYXY26XYXY folds
|
||||
ANOKATO calls $0.10
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.70 won by nickgerm ($1.62)
|
||||
Rake taken: $0.08
|
||||
Seat 3: nickgerm ($3.93), net: +$1.02, [9c, 4s, Jd, 6c] (FULL_HOUSE JACK, FOUR)
|
||||
Seat 4: tchazx ($4), net: -$0.05
|
||||
Seat 8: XYXY26XYXY ($0.65), net: -$0.40
|
||||
Seat 10: Mandala14 ($3.61), net: -$0.05
|
||||
Seat 1: ANOKATO ($3.35), net: -$0.60
|
||||
***** End of hand R5-81867677-661 *****
|
||||
***** History for hand R5-81867677-662 *****
|
||||
Start hand: Mon Sep 13 00:33:20 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 3
|
||||
Players in round: 5
|
||||
Seat 4: tchazx ($4)
|
||||
Seat 8: XYXY26XYXY ($0.65)
|
||||
Seat 10: Mandala14 ($3.61)
|
||||
Seat 1: ANOKATO ($3.35)
|
||||
Seat 3: nickgerm ($3.93)
|
||||
tchazx posts small blind ($0.02)
|
||||
XYXY26XYXY posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [5s, 6c, Kc, 3s]
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
nickgerm raises $0.10 to $0.10
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
ANOKATO calls $0.05
|
||||
--- Dealing flop [3h, 2d, 2s]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 folds
|
||||
ANOKATO raises $0.10 to $0.10
|
||||
nickgerm calls $0.05
|
||||
XYXY26XYXY folds
|
||||
--- Dealing turn [4d]
|
||||
ANOKATO checks
|
||||
nickgerm bets $0.10
|
||||
ANOKATO raises $0.20 to $0.20
|
||||
nickgerm calls $0.10
|
||||
--- Dealing river [Ts]
|
||||
ANOKATO checks
|
||||
nickgerm checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.07 won by ANOKATO ($1.02)
|
||||
Rake taken: $0.05
|
||||
Seat 4: tchazx ($3.98), net: -$0.02
|
||||
Seat 8: XYXY26XYXY ($0.50), net: -$0.15
|
||||
Seat 10: Mandala14 ($3.51), net: -$0.10
|
||||
Seat 1: ANOKATO ($3.97), net: +$0.62, [Js, 5c, 9c, 2h] (THREE_OF_A_KIND TWO)
|
||||
Seat 3: nickgerm ($3.53), net: -$0.40
|
||||
***** End of hand R5-81867677-662 *****
|
||||
***** History for hand R5-81867677-663 *****
|
||||
Start hand: Mon Sep 13 00:34:34 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 4
|
||||
Players in round: 5
|
||||
Seat 8: XYXY26XYXY ($0.50)
|
||||
Seat 10: Mandala14 ($3.51)
|
||||
Seat 1: ANOKATO ($3.97)
|
||||
Seat 3: nickgerm ($3.53)
|
||||
Seat 4: tchazx ($3.98)
|
||||
XYXY26XYXY posts small blind ($0.02)
|
||||
Mandala14 posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Ac, 9h, 6h, Jc]
|
||||
ANOKATO calls $0.05
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.03
|
||||
Mandala14 checks
|
||||
--- Dealing flop [7s, 4c, 8s]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.05
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [2d]
|
||||
XYXY26XYXY checks
|
||||
Mandala14 checks
|
||||
ANOKATO bets $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx calls $0.20
|
||||
XYXY26XYXY calls $0.20
|
||||
Mandala14 calls $0.20
|
||||
ANOKATO calls $0.10
|
||||
--- Dealing river [4h]
|
||||
XYXY26XYXY bets $0.10
|
||||
Mandala14 folds
|
||||
ANOKATO calls $0.10
|
||||
nickgerm raises $0.20 to $0.20
|
||||
tchazx folds
|
||||
XYXY26XYXY calls $0.10 [all in]
|
||||
ANOKATO folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $2 won by XYXY26XYXY ($1.90)
|
||||
Rake taken: $0.10
|
||||
Seat 8: XYXY26XYXY ($1.90), net: +$1.40, [8d, 5c, 4d, 3c] (FULL_HOUSE FOUR, EIGHT)
|
||||
Seat 10: Mandala14 ($3.21), net: -$0.30
|
||||
Seat 1: ANOKATO ($3.57), net: -$0.40
|
||||
Seat 3: nickgerm ($3.03), net: -$0.50, [6s, Th, 3d, 5d] (STRAIGHT EIGHT)
|
||||
Seat 4: tchazx ($3.68), net: -$0.30
|
||||
***** End of hand R5-81867677-663 *****
|
||||
***** History for hand R5-81867677-664 *****
|
||||
Start hand: Mon Sep 13 00:36:21 GMT+0100 2010
|
||||
Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 10: Mandala14 ($3.21)
|
||||
Seat 1: ANOKATO ($3.57)
|
||||
Seat 3: nickgerm ($3.03)
|
||||
Seat 4: tchazx ($3.68)
|
||||
Seat 8: XYXY26XYXY ($1.90)
|
||||
Mandala14 posts small blind ($0.02)
|
||||
ANOKATO posts big blind ($0.05)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [7d, Kh, 4s, Jh]
|
||||
nickgerm calls $0.05
|
||||
tchazx calls $0.05
|
||||
XYXY26XYXY folds
|
||||
Mandala14 calls $0.03
|
||||
ANOKATO checks
|
||||
--- Dealing flop [4h, Js, Ac]
|
||||
Mandala14 checks
|
||||
ANOKATO folds
|
||||
nickgerm bets $0.05
|
||||
tchazx calls $0.05
|
||||
Mandala14 calls $0.05
|
||||
--- Dealing turn [8c]
|
||||
Mandala14 checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
--- Dealing river [3d]
|
||||
Mandala14 checks
|
||||
nickgerm checks
|
||||
tchazx checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.35 won by tchazx ($0.34)
|
||||
Rake taken: $0.01
|
||||
Seat 10: Mandala14 ($3.11), net: -$0.10, [7h, 4d, Qh, 6d] (PAIR FOUR)
|
||||
Seat 1: ANOKATO ($3.52), net: -$0.05
|
||||
Seat 3: nickgerm ($2.93), net: -$0.10, [7s, Qd, 6s, Ah] (PAIR ACE)
|
||||
Seat 4: tchazx ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR)
|
||||
Seat 8: XYXY26XYXY ($1.90)
|
||||
***** End of hand R5-81867677-664 *****
|
||||
|
|
|
@ -1,41 +1,41 @@
|
|||
***** History for hand R5-70000684-006 *****
|
||||
Start hand: Wed Aug 11 03:21:00 GMT+0100 2010
|
||||
Table: Kassel [73910684] (NO_LIMIT TEXAS_HOLDEM 0.05/0.10, Real money)
|
||||
User: Player3
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 9: Player1 (4.35)
|
||||
Seat 3: Player0 (10.90)
|
||||
Seat 5: Player2 (12.88)
|
||||
Seat 6: Player3 (14.18)
|
||||
Seat 8: Player4 (9)
|
||||
Player1 posts small blind (0.05)
|
||||
Player0 posts big blind (0.10)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to Player3: [6s, 7h]
|
||||
Player2 folds
|
||||
Player3 folds
|
||||
Player4 raises 0.30 to 0.30
|
||||
Player1 calls 0.25
|
||||
Player0 folds
|
||||
--- Dealing flop [8c, Ts, 4d]
|
||||
Player1 checks
|
||||
Player4 checks
|
||||
--- Dealing turn [Ac]
|
||||
Player1 bets 0.10
|
||||
Player4 calls 0.10
|
||||
--- Dealing river [5d]
|
||||
Player1 bets 0.10
|
||||
Player4 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: 0.90 won by Player1 (0.86)
|
||||
Rake taken: $0.04
|
||||
Seat 9: Player1 (4.81), net: +0.46
|
||||
Seat 3: Player0 (10.80), net: -0.10
|
||||
Seat 5: Player2 (12.88)
|
||||
Seat 6: Player3 (14.18)
|
||||
Seat 8: Player4 (8.60), net: -0.40
|
||||
***** End of hand R5-73910684-276 *****
|
||||
***** History for hand R5-70000684-006 *****
|
||||
Start hand: Wed Aug 11 03:21:00 GMT+0100 2010
|
||||
Table: Kassel [73910684] (NO_LIMIT TEXAS_HOLDEM 0.05/0.10, Real money)
|
||||
User: Player3
|
||||
Button: seat 8
|
||||
Players in round: 5
|
||||
Seat 9: Player1 (4.35)
|
||||
Seat 3: Player0 (10.90)
|
||||
Seat 5: Player2 (12.88)
|
||||
Seat 6: Player3 (14.18)
|
||||
Seat 8: Player4 (9)
|
||||
Player1 posts small blind (0.05)
|
||||
Player0 posts big blind (0.10)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to Player3: [6s, 7h]
|
||||
Player2 folds
|
||||
Player3 folds
|
||||
Player4 raises 0.30 to 0.30
|
||||
Player1 calls 0.25
|
||||
Player0 folds
|
||||
--- Dealing flop [8c, Ts, 4d]
|
||||
Player1 checks
|
||||
Player4 checks
|
||||
--- Dealing turn [Ac]
|
||||
Player1 bets 0.10
|
||||
Player4 calls 0.10
|
||||
--- Dealing river [5d]
|
||||
Player1 bets 0.10
|
||||
Player4 folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: 0.90 won by Player1 (0.86)
|
||||
Rake taken: $0.04
|
||||
Seat 9: Player1 (4.81), net: +0.46
|
||||
Seat 3: Player0 (10.80), net: -0.10
|
||||
Seat 5: Player2 (12.88)
|
||||
Seat 6: Player3 (14.18)
|
||||
Seat 8: Player4 (8.60), net: -0.40
|
||||
***** End of hand R5-73910684-276 *****
|
||||
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
***** History for hand R5-79836934-72 *****
|
||||
Start hand: Sat Sep 4 05:34:19 GMT+0100 2010
|
||||
Table: Bnei Brak [79836934] (NO_LIMIT TEXAS_HOLDEM $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 2
|
||||
Seat 1: feradf ($6.86)
|
||||
Seat 10: tchazx ($15.44)
|
||||
tchazx posts big blind ($0.10)
|
||||
tchazx posts dead blind ($0.05)
|
||||
feradf posts big blind ($0.10)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Qh, 4h]
|
||||
tchazx raises $0.20 to $0.30
|
||||
feradf calls $0.20
|
||||
--- Dealing flop [6c, Qs, 7h]
|
||||
feradf checks
|
||||
tchazx bets $0.45
|
||||
feradf folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.65 won by tchazx ($0.62)
|
||||
Rake taken: $0.03
|
||||
Seat 1: feradf ($6.56), net: -$0.30
|
||||
Seat 10: tchazx ($15.71), net: +$0.27
|
||||
***** History for hand R5-79836934-72 *****
|
||||
Start hand: Sat Sep 4 05:34:19 GMT+0100 2010
|
||||
Table: Bnei Brak [79836934] (NO_LIMIT TEXAS_HOLDEM $0.05/$0.10, Real money)
|
||||
User: tchazx
|
||||
Button: seat 10
|
||||
Players in round: 2
|
||||
Seat 1: feradf ($6.86)
|
||||
Seat 10: tchazx ($15.44)
|
||||
tchazx posts big blind ($0.10)
|
||||
tchazx posts dead blind ($0.05)
|
||||
feradf posts big blind ($0.10)
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to tchazx: [Qh, 4h]
|
||||
tchazx raises $0.20 to $0.30
|
||||
feradf calls $0.20
|
||||
--- Dealing flop [6c, Qs, 7h]
|
||||
feradf checks
|
||||
tchazx bets $0.45
|
||||
feradf folds
|
||||
---
|
||||
Summary:
|
||||
Main pot: $0.65 won by tchazx ($0.62)
|
||||
Rake taken: $0.03
|
||||
Seat 1: feradf ($6.56), net: -$0.30
|
||||
Seat 10: tchazx ($15.71), net: +$0.27
|
||||
***** End of hand R5-79836934-72 *****
|
|
@ -1,270 +1,270 @@
|
|||
***** History for hand R5-82086688-607 *****
|
||||
Start hand: Mon Sep 13 22:31:30 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($6.53)
|
||||
Seat 2: tchazx ($2)
|
||||
Seat 6: kueto ($6.30)
|
||||
Seat 8: E6y Ko3y ($2.70)
|
||||
Seat 10: telozver123 ($6.49)
|
||||
the bAAr posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, Kh]
|
||||
Dealing to tchazx: [Jh, 9d, Ac]
|
||||
Dealing to kueto: [-, -, 4h]
|
||||
Dealing to E6y Ko3y: [-, -, Ad]
|
||||
Dealing to telozver123: [-, -, 6h]
|
||||
kueto small bring in $0.05
|
||||
E6y Ko3y calls $0.05
|
||||
telozver123 calls $0.05
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [3h]
|
||||
Dealing to tchazx: [7h]
|
||||
Dealing to kueto: [3d]
|
||||
Dealing to E6y Ko3y: [Qs]
|
||||
Dealing to telozver123: [Ts]
|
||||
E6y Ko3y bets $0.10
|
||||
telozver123 calls $0.10
|
||||
the bAAr calls $0.10
|
||||
tchazx calls $0.10
|
||||
kueto folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [9s]
|
||||
Dealing to tchazx: [Js]
|
||||
Dealing to E6y Ko3y: [6c]
|
||||
Dealing to telozver123: [Kd]
|
||||
E6y Ko3y checks
|
||||
telozver123 checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
E6y Ko3y calls $0.20
|
||||
telozver123 folds
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [8s]
|
||||
Dealing to tchazx: [5c]
|
||||
Dealing to E6y Ko3y: [5d]
|
||||
E6y Ko3y checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
E6y Ko3y calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [9h]
|
||||
E6y Ko3y checks
|
||||
the bAAr checks
|
||||
tchazx bets $0.20
|
||||
E6y Ko3y folds
|
||||
the bAAr calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $2.35 won by tchazx ($2.24)
|
||||
Rake taken: $0.11
|
||||
Seat 1: the bAAr ($5.76), net: -$0.77
|
||||
Seat 2: tchazx ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE)
|
||||
Seat 6: kueto ($6.23), net: -$0.07
|
||||
Seat 8: E6y Ko3y ($2.13), net: -$0.57
|
||||
Seat 10: telozver123 ($6.32), net: -$0.17
|
||||
***** End of hand R5-82086688-607 *****
|
||||
***** History for hand R5-82086688-608 *****
|
||||
Start hand: Mon Sep 13 22:32:47 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.76)
|
||||
Seat 2: tchazx ($3.47)
|
||||
Seat 6: kueto ($6.23)
|
||||
Seat 8: E6y Ko3y ($2.13)
|
||||
Seat 10: telozver123 ($6.32)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, 4s]
|
||||
Dealing to tchazx: [8h, Ks, Qd]
|
||||
Dealing to kueto: [-, -, 5h]
|
||||
Dealing to E6y Ko3y: [-, -, 2h]
|
||||
Dealing to telozver123: [-, -, 3c]
|
||||
E6y Ko3y small bring in $0.05
|
||||
telozver123 folds
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
kueto folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [Ad]
|
||||
Dealing to tchazx: [8d]
|
||||
Dealing to E6y Ko3y: [Qh]
|
||||
the bAAr bets $0.10
|
||||
tchazx calls $0.10
|
||||
E6y Ko3y folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [4c]
|
||||
Dealing to tchazx: [Ah]
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [3d]
|
||||
Dealing to tchazx: [Jh]
|
||||
the bAAr checks
|
||||
tchazx checks
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [Kh]
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.25 won by tchazx ($1.19)
|
||||
Rake taken: $0.06
|
||||
Seat 1: the bAAr ($5.19), net: -$0.57, [6s, 9s, 4s, Ad, 4c, 3d, 3h] (TWO_PAIR FOUR, THREE)
|
||||
Seat 2: tchazx ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT)
|
||||
Seat 6: kueto ($6.21), net: -$0.02
|
||||
Seat 8: E6y Ko3y ($2.06), net: -$0.07
|
||||
Seat 10: telozver123 ($6.30), net: -$0.02
|
||||
***** End of hand R5-82086688-608 *****
|
||||
***** History for hand R5-82086688-609 *****
|
||||
Start hand: Mon Sep 13 22:33:42 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.19)
|
||||
Seat 2: tchazx ($4.09)
|
||||
Seat 6: kueto ($6.21)
|
||||
Seat 8: E6y Ko3y ($2.06)
|
||||
Seat 10: telozver123 ($6.30)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, 5c]
|
||||
Dealing to tchazx: [Ad, As, Kh]
|
||||
Dealing to kueto: [-, -, Qs]
|
||||
Dealing to E6y Ko3y: [-, -, 8s]
|
||||
Dealing to telozver123: [-, -, Tc]
|
||||
the bAAr small bring in $0.05
|
||||
tchazx bets $0.10
|
||||
kueto calls $0.10
|
||||
E6y Ko3y folds
|
||||
telozver123 folds
|
||||
the bAAr folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to tchazx: [Ks]
|
||||
Dealing to kueto: [Qd]
|
||||
tchazx bets $0.10
|
||||
kueto calls $0.10
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to tchazx: [8c]
|
||||
Dealing to kueto: [7s]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to tchazx: [7d]
|
||||
Dealing to kueto: [5s]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [7h]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.75 won by kueto ($1.67)
|
||||
Rake taken: $0.08
|
||||
Seat 1: the bAAr ($5.12), net: -$0.07
|
||||
Seat 2: tchazx ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING)
|
||||
Seat 6: kueto ($7.06), net: +$0.85, [Qc, 6c, Qs, Qd, 7s, 5s, 3c] (THREE_OF_A_KIND QUEEN)
|
||||
Seat 8: E6y Ko3y ($2.04), net: -$0.02
|
||||
Seat 10: telozver123 ($6.28), net: -$0.02
|
||||
***** End of hand R5-82086688-609 *****
|
||||
***** History for hand R5-82086688-610 *****
|
||||
Start hand: Mon Sep 13 22:34:25 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.12)
|
||||
Seat 2: tchazx ($3.27)
|
||||
Seat 6: kueto ($7.06)
|
||||
Seat 8: E6y Ko3y ($2.04)
|
||||
Seat 10: telozver123 ($6.28)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, Ts]
|
||||
Dealing to tchazx: [9s, 6s, 7s]
|
||||
Dealing to kueto: [-, -, Qs]
|
||||
Dealing to E6y Ko3y: [-, -, 3s]
|
||||
Dealing to telozver123: [-, -, 9d]
|
||||
E6y Ko3y small bring in $0.05
|
||||
telozver123 folds
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
kueto calls $0.05
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [Qd]
|
||||
Dealing to tchazx: [Ah]
|
||||
Dealing to kueto: [7h]
|
||||
Dealing to E6y Ko3y: [Th]
|
||||
tchazx checks
|
||||
kueto checks
|
||||
E6y Ko3y checks
|
||||
the bAAr bets $0.10
|
||||
tchazx calls $0.10
|
||||
kueto folds
|
||||
E6y Ko3y folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [Jh]
|
||||
Dealing to tchazx: [5c]
|
||||
tchazx checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [7d]
|
||||
Dealing to tchazx: [7c]
|
||||
tchazx checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [5h]
|
||||
tchazx checks
|
||||
the bAAr checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.30 won by the bAAr ($1.24)
|
||||
Rake taken: $0.06
|
||||
Seat 1: the bAAr ($5.79), net: +$0.67, [Tc, 9h, Ts, Qd, Jh, 7d, 9c] (TWO_PAIR TEN, NINE)
|
||||
Seat 2: tchazx ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE)
|
||||
Seat 6: kueto ($6.99), net: -$0.07
|
||||
Seat 8: E6y Ko3y ($1.97), net: -$0.07
|
||||
Seat 10: telozver123 ($6.26), net: -$0.02
|
||||
***** End of hand R5-82086688-610 *****
|
||||
***** History for hand R5-82086688-607 *****
|
||||
Start hand: Mon Sep 13 22:31:30 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($6.53)
|
||||
Seat 2: tchazx ($2)
|
||||
Seat 6: kueto ($6.30)
|
||||
Seat 8: E6y Ko3y ($2.70)
|
||||
Seat 10: telozver123 ($6.49)
|
||||
the bAAr posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, Kh]
|
||||
Dealing to tchazx: [Jh, 9d, Ac]
|
||||
Dealing to kueto: [-, -, 4h]
|
||||
Dealing to E6y Ko3y: [-, -, Ad]
|
||||
Dealing to telozver123: [-, -, 6h]
|
||||
kueto small bring in $0.05
|
||||
E6y Ko3y calls $0.05
|
||||
telozver123 calls $0.05
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [3h]
|
||||
Dealing to tchazx: [7h]
|
||||
Dealing to kueto: [3d]
|
||||
Dealing to E6y Ko3y: [Qs]
|
||||
Dealing to telozver123: [Ts]
|
||||
E6y Ko3y bets $0.10
|
||||
telozver123 calls $0.10
|
||||
the bAAr calls $0.10
|
||||
tchazx calls $0.10
|
||||
kueto folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [9s]
|
||||
Dealing to tchazx: [Js]
|
||||
Dealing to E6y Ko3y: [6c]
|
||||
Dealing to telozver123: [Kd]
|
||||
E6y Ko3y checks
|
||||
telozver123 checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
E6y Ko3y calls $0.20
|
||||
telozver123 folds
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [8s]
|
||||
Dealing to tchazx: [5c]
|
||||
Dealing to E6y Ko3y: [5d]
|
||||
E6y Ko3y checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
E6y Ko3y calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [9h]
|
||||
E6y Ko3y checks
|
||||
the bAAr checks
|
||||
tchazx bets $0.20
|
||||
E6y Ko3y folds
|
||||
the bAAr calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $2.35 won by tchazx ($2.24)
|
||||
Rake taken: $0.11
|
||||
Seat 1: the bAAr ($5.76), net: -$0.77
|
||||
Seat 2: tchazx ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE)
|
||||
Seat 6: kueto ($6.23), net: -$0.07
|
||||
Seat 8: E6y Ko3y ($2.13), net: -$0.57
|
||||
Seat 10: telozver123 ($6.32), net: -$0.17
|
||||
***** End of hand R5-82086688-607 *****
|
||||
***** History for hand R5-82086688-608 *****
|
||||
Start hand: Mon Sep 13 22:32:47 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.76)
|
||||
Seat 2: tchazx ($3.47)
|
||||
Seat 6: kueto ($6.23)
|
||||
Seat 8: E6y Ko3y ($2.13)
|
||||
Seat 10: telozver123 ($6.32)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, 4s]
|
||||
Dealing to tchazx: [8h, Ks, Qd]
|
||||
Dealing to kueto: [-, -, 5h]
|
||||
Dealing to E6y Ko3y: [-, -, 2h]
|
||||
Dealing to telozver123: [-, -, 3c]
|
||||
E6y Ko3y small bring in $0.05
|
||||
telozver123 folds
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
kueto folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [Ad]
|
||||
Dealing to tchazx: [8d]
|
||||
Dealing to E6y Ko3y: [Qh]
|
||||
the bAAr bets $0.10
|
||||
tchazx calls $0.10
|
||||
E6y Ko3y folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [4c]
|
||||
Dealing to tchazx: [Ah]
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [3d]
|
||||
Dealing to tchazx: [Jh]
|
||||
the bAAr checks
|
||||
tchazx checks
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [Kh]
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.25 won by tchazx ($1.19)
|
||||
Rake taken: $0.06
|
||||
Seat 1: the bAAr ($5.19), net: -$0.57, [6s, 9s, 4s, Ad, 4c, 3d, 3h] (TWO_PAIR FOUR, THREE)
|
||||
Seat 2: tchazx ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT)
|
||||
Seat 6: kueto ($6.21), net: -$0.02
|
||||
Seat 8: E6y Ko3y ($2.06), net: -$0.07
|
||||
Seat 10: telozver123 ($6.30), net: -$0.02
|
||||
***** End of hand R5-82086688-608 *****
|
||||
***** History for hand R5-82086688-609 *****
|
||||
Start hand: Mon Sep 13 22:33:42 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.19)
|
||||
Seat 2: tchazx ($4.09)
|
||||
Seat 6: kueto ($6.21)
|
||||
Seat 8: E6y Ko3y ($2.06)
|
||||
Seat 10: telozver123 ($6.30)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, 5c]
|
||||
Dealing to tchazx: [Ad, As, Kh]
|
||||
Dealing to kueto: [-, -, Qs]
|
||||
Dealing to E6y Ko3y: [-, -, 8s]
|
||||
Dealing to telozver123: [-, -, Tc]
|
||||
the bAAr small bring in $0.05
|
||||
tchazx bets $0.10
|
||||
kueto calls $0.10
|
||||
E6y Ko3y folds
|
||||
telozver123 folds
|
||||
the bAAr folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to tchazx: [Ks]
|
||||
Dealing to kueto: [Qd]
|
||||
tchazx bets $0.10
|
||||
kueto calls $0.10
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to tchazx: [8c]
|
||||
Dealing to kueto: [7s]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to tchazx: [7d]
|
||||
Dealing to kueto: [5s]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [7h]
|
||||
tchazx bets $0.20
|
||||
kueto calls $0.20
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.75 won by kueto ($1.67)
|
||||
Rake taken: $0.08
|
||||
Seat 1: the bAAr ($5.12), net: -$0.07
|
||||
Seat 2: tchazx ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING)
|
||||
Seat 6: kueto ($7.06), net: +$0.85, [Qc, 6c, Qs, Qd, 7s, 5s, 3c] (THREE_OF_A_KIND QUEEN)
|
||||
Seat 8: E6y Ko3y ($2.04), net: -$0.02
|
||||
Seat 10: telozver123 ($6.28), net: -$0.02
|
||||
***** End of hand R5-82086688-609 *****
|
||||
***** History for hand R5-82086688-610 *****
|
||||
Start hand: Mon Sep 13 22:34:25 GMT+0100 2010
|
||||
Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money)
|
||||
User: tchazx
|
||||
Players in round: 5
|
||||
Seat 1: the bAAr ($5.12)
|
||||
Seat 2: tchazx ($3.27)
|
||||
Seat 6: kueto ($7.06)
|
||||
Seat 8: E6y Ko3y ($2.04)
|
||||
Seat 10: telozver123 ($6.28)
|
||||
the bAAr posts ante $0.02
|
||||
tchazx posts ante $0.02
|
||||
kueto posts ante $0.02
|
||||
E6y Ko3y posts ante $0.02
|
||||
telozver123 posts ante $0.02
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to the bAAr: [-, -, Ts]
|
||||
Dealing to tchazx: [9s, 6s, 7s]
|
||||
Dealing to kueto: [-, -, Qs]
|
||||
Dealing to E6y Ko3y: [-, -, 3s]
|
||||
Dealing to telozver123: [-, -, 9d]
|
||||
E6y Ko3y small bring in $0.05
|
||||
telozver123 folds
|
||||
the bAAr calls $0.05
|
||||
tchazx calls $0.05
|
||||
kueto calls $0.05
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to the bAAr: [Qd]
|
||||
Dealing to tchazx: [Ah]
|
||||
Dealing to kueto: [7h]
|
||||
Dealing to E6y Ko3y: [Th]
|
||||
tchazx checks
|
||||
kueto checks
|
||||
E6y Ko3y checks
|
||||
the bAAr bets $0.10
|
||||
tchazx calls $0.10
|
||||
kueto folds
|
||||
E6y Ko3y folds
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to the bAAr: [Jh]
|
||||
Dealing to tchazx: [5c]
|
||||
tchazx checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to the bAAr: [7d]
|
||||
Dealing to tchazx: [7c]
|
||||
tchazx checks
|
||||
the bAAr bets $0.20
|
||||
tchazx calls $0.20
|
||||
---
|
||||
Dealing river
|
||||
Dealing to tchazx: [5h]
|
||||
tchazx checks
|
||||
the bAAr checks
|
||||
---
|
||||
Summary:
|
||||
Main pot: $1.30 won by the bAAr ($1.24)
|
||||
Rake taken: $0.06
|
||||
Seat 1: the bAAr ($5.79), net: +$0.67, [Tc, 9h, Ts, Qd, Jh, 7d, 9c] (TWO_PAIR TEN, NINE)
|
||||
Seat 2: tchazx ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE)
|
||||
Seat 6: kueto ($6.99), net: -$0.07
|
||||
Seat 8: E6y Ko3y ($1.97), net: -$0.07
|
||||
Seat 10: telozver123 ($6.26), net: -$0.02
|
||||
***** End of hand R5-82086688-610 *****
|
||||
|
|
|
@ -1,76 +1,76 @@
|
|||
***** History for hand R5-78227816-62 *****
|
||||
Start hand: Sat Aug 28 20:33:38 GMT+0300 2010
|
||||
Table: Taegu [78227816] (LIMIT SEVEN_CARD_STUD_HI_LO $0.25/$0.50, ante: $0.05, Real money)
|
||||
User: XMAN1
|
||||
Players in round: 8
|
||||
Seat 1: XMAN1 ($25)
|
||||
Seat 3: boneos56 ($27.78)
|
||||
Seat 5: grumset2007 ($3.48)
|
||||
Seat 6: mylonas77 ($40.73)
|
||||
Seat 7: YMAN1 ($14.70)
|
||||
Seat 8: Lee Clayton ($14.79)
|
||||
Seat 9: guggi_cool ($8.34)
|
||||
Seat 10: HangEv ($29.08)
|
||||
boneos56 posts ante $0.05
|
||||
grumset2007 posts ante $0.05
|
||||
YMAN1 posts ante $0.05
|
||||
Lee Clayton posts ante $0.05
|
||||
guggi_cool posts ante $0.05
|
||||
HangEv posts ante $0.05
|
||||
mylonas77 posts ante $0.05
|
||||
XMAN1 posts ante $0.05
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to XMAN1: [8d, 8s, 4d]
|
||||
Dealing to boneos56: [-, -, Kd]
|
||||
Dealing to grumset2007: [-, -, Ks]
|
||||
Dealing to mylonas77: [-, -, 5c]
|
||||
Dealing to YMAN1: [-, -, As]
|
||||
Dealing to Lee Clayton: [-, -, Js]
|
||||
Dealing to guggi_cool: [-, -, 9s]
|
||||
Dealing to HangEv: [-, -, 6s]
|
||||
XMAN1 small bring in $0.12
|
||||
boneos56 folds
|
||||
grumset2007 folds
|
||||
mylonas77 calls $0.12
|
||||
YMAN1 folds
|
||||
Lee Clayton folds
|
||||
guggi_cool folds
|
||||
HangEv folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to XMAN1: [3h]
|
||||
Dealing to mylonas77: [2h]
|
||||
mylonas77 bets $0.25
|
||||
XMAN1 calls $0.25
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to XMAN1: [8c]
|
||||
Dealing to mylonas77: [Kh]
|
||||
mylonas77 bets $0.50
|
||||
XMAN1 raises $1 to $1.37
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to XMAN1: [4c]
|
||||
Dealing to mylonas77: [Qh]
|
||||
XMAN1 bets $0.50
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Dealing river
|
||||
Dealing to XMAN1: [5h]
|
||||
XMAN1 bets $0.50
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Summary:
|
||||
Main pot: $5.14 won by XMAN1 ($4.89)
|
||||
Rake taken: $0.25
|
||||
Seat 1: XMAN1 ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR)
|
||||
Seat 3: boneos56 ($27.73), net: -$0.05
|
||||
Seat 5: grumset2007 ($3.43), net: -$0.05
|
||||
Seat 6: mylonas77 ($38.31), net: -$2.42
|
||||
Seat 7: YMAN1 ($14.65), net: -$0.05
|
||||
Seat 8: Lee Clayton ($14.74), net: -$0.05
|
||||
Seat 9: guggi_cool ($8.29), net: -$0.05
|
||||
Seat 10: HangEv ($29.03), net: -$0.05
|
||||
***** End of hand R5-78227816-62 *****
|
||||
***** History for hand R5-78227816-62 *****
|
||||
Start hand: Sat Aug 28 20:33:38 GMT+0300 2010
|
||||
Table: Taegu [78227816] (LIMIT SEVEN_CARD_STUD_HI_LO $0.25/$0.50, ante: $0.05, Real money)
|
||||
User: XMAN1
|
||||
Players in round: 8
|
||||
Seat 1: XMAN1 ($25)
|
||||
Seat 3: boneos56 ($27.78)
|
||||
Seat 5: grumset2007 ($3.48)
|
||||
Seat 6: mylonas77 ($40.73)
|
||||
Seat 7: YMAN1 ($14.70)
|
||||
Seat 8: Lee Clayton ($14.79)
|
||||
Seat 9: guggi_cool ($8.34)
|
||||
Seat 10: HangEv ($29.08)
|
||||
boneos56 posts ante $0.05
|
||||
grumset2007 posts ante $0.05
|
||||
YMAN1 posts ante $0.05
|
||||
Lee Clayton posts ante $0.05
|
||||
guggi_cool posts ante $0.05
|
||||
HangEv posts ante $0.05
|
||||
mylonas77 posts ante $0.05
|
||||
XMAN1 posts ante $0.05
|
||||
---
|
||||
Dealing pocket cards
|
||||
Dealing to XMAN1: [8d, 8s, 4d]
|
||||
Dealing to boneos56: [-, -, Kd]
|
||||
Dealing to grumset2007: [-, -, Ks]
|
||||
Dealing to mylonas77: [-, -, 5c]
|
||||
Dealing to YMAN1: [-, -, As]
|
||||
Dealing to Lee Clayton: [-, -, Js]
|
||||
Dealing to guggi_cool: [-, -, 9s]
|
||||
Dealing to HangEv: [-, -, 6s]
|
||||
XMAN1 small bring in $0.12
|
||||
boneos56 folds
|
||||
grumset2007 folds
|
||||
mylonas77 calls $0.12
|
||||
YMAN1 folds
|
||||
Lee Clayton folds
|
||||
guggi_cool folds
|
||||
HangEv folds
|
||||
---
|
||||
Dealing 4th street
|
||||
Dealing to XMAN1: [3h]
|
||||
Dealing to mylonas77: [2h]
|
||||
mylonas77 bets $0.25
|
||||
XMAN1 calls $0.25
|
||||
---
|
||||
Dealing 5th street
|
||||
Dealing to XMAN1: [8c]
|
||||
Dealing to mylonas77: [Kh]
|
||||
mylonas77 bets $0.50
|
||||
XMAN1 raises $1 to $1.37
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Dealing 6th street
|
||||
Dealing to XMAN1: [4c]
|
||||
Dealing to mylonas77: [Qh]
|
||||
XMAN1 bets $0.50
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Dealing river
|
||||
Dealing to XMAN1: [5h]
|
||||
XMAN1 bets $0.50
|
||||
mylonas77 calls $0.50
|
||||
---
|
||||
Summary:
|
||||
Main pot: $5.14 won by XMAN1 ($4.89)
|
||||
Rake taken: $0.25
|
||||
Seat 1: XMAN1 ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR)
|
||||
Seat 3: boneos56 ($27.73), net: -$0.05
|
||||
Seat 5: grumset2007 ($3.43), net: -$0.05
|
||||
Seat 6: mylonas77 ($38.31), net: -$2.42
|
||||
Seat 7: YMAN1 ($14.65), net: -$0.05
|
||||
Seat 8: Lee Clayton ($14.74), net: -$0.05
|
||||
Seat 9: guggi_cool ($8.29), net: -$0.05
|
||||
Seat 10: HangEv ($29.03), net: -$0.05
|
||||
***** End of hand R5-78227816-62 *****
|
||||
|
|
|
@ -1,61 +1,61 @@
|
|||
Table #15200183 - Hapuna Beach 2
|
||||
Starting Hand #746382000
|
||||
Start time of hand: 30 Mar 2009 21:00:00
|
||||
Last Hand #746380000
|
||||
Game Type: HOLD'EM
|
||||
Limit Type: NO LIMIT
|
||||
Table Type: RING
|
||||
Money Type: REAL MONEY
|
||||
Blinds are now $0.02/$0.04
|
||||
Button is at seat 5
|
||||
Seat 1: Player1 - $0.23
|
||||
Seat 2: Player2 - $5.28
|
||||
Seat 3: Player3 - $1.80
|
||||
Seat 4: allout96 - $3.99
|
||||
Seat 5: Player4 - $1.47
|
||||
Seat 6: Player5 - $4
|
||||
Moving Button to seat 1
|
||||
Player2 posts small blind ($0.02)
|
||||
Player3 posts big blind ($0.04)
|
||||
Player5 posts $0.04
|
||||
Shuffling Deck
|
||||
Dealing Cards
|
||||
Dealing [Ad 8h] to Player5
|
||||
allout96 folds
|
||||
Player4 calls $0.04
|
||||
Player5 checks
|
||||
Player1 folds
|
||||
Player2 calls $0.04
|
||||
Player3 checks
|
||||
Dealing Flop [9s Ac 5s]
|
||||
Player2 bets $0.08
|
||||
Player3 calls $0.08
|
||||
Player4 calls $0.08
|
||||
Player5 raises to $0.16
|
||||
Player2 calls $0.16
|
||||
Player3 calls $0.16
|
||||
Player4 calls $0.16
|
||||
Dealing Turn [4s]
|
||||
Player2 checks
|
||||
Player3 bets $0.04
|
||||
Player4 calls $0.04
|
||||
Player5 raises to $0.72
|
||||
Player2 folds
|
||||
Player3 raises to $1.40
|
||||
Player4 calls $1.27 (all-in)
|
||||
Player5 folds
|
||||
Returning $0.13 to Player3 uncalled
|
||||
Player3 shows [2h 3d]
|
||||
Player4 shows [4d 9c]
|
||||
Dealing River [2c]
|
||||
Taking Rake of $0.40 from pot 1
|
||||
Player3 has Straight, 5 high
|
||||
Player3 wins $3.66 with: Straight, 5 high
|
||||
Seat 1: Player1 - $0.23
|
||||
Seat 2: Player2 - $5.08
|
||||
Seat 3: Player3 - $3.99
|
||||
Seat 4: allout96 - $3.99
|
||||
Seat 5: Player4 - $0
|
||||
Seat 6: Player5 - $3.08
|
||||
End Of Hand #746382682
|
||||
|
||||
Table #15200183 - Hapuna Beach 2
|
||||
Starting Hand #746382000
|
||||
Start time of hand: 30 Mar 2009 21:00:00
|
||||
Last Hand #746380000
|
||||
Game Type: HOLD'EM
|
||||
Limit Type: NO LIMIT
|
||||
Table Type: RING
|
||||
Money Type: REAL MONEY
|
||||
Blinds are now $0.02/$0.04
|
||||
Button is at seat 5
|
||||
Seat 1: Player1 - $0.23
|
||||
Seat 2: Player2 - $5.28
|
||||
Seat 3: Player3 - $1.80
|
||||
Seat 4: allout96 - $3.99
|
||||
Seat 5: Player4 - $1.47
|
||||
Seat 6: Player5 - $4
|
||||
Moving Button to seat 1
|
||||
Player2 posts small blind ($0.02)
|
||||
Player3 posts big blind ($0.04)
|
||||
Player5 posts $0.04
|
||||
Shuffling Deck
|
||||
Dealing Cards
|
||||
Dealing [Ad 8h] to Player5
|
||||
allout96 folds
|
||||
Player4 calls $0.04
|
||||
Player5 checks
|
||||
Player1 folds
|
||||
Player2 calls $0.04
|
||||
Player3 checks
|
||||
Dealing Flop [9s Ac 5s]
|
||||
Player2 bets $0.08
|
||||
Player3 calls $0.08
|
||||
Player4 calls $0.08
|
||||
Player5 raises to $0.16
|
||||
Player2 calls $0.16
|
||||
Player3 calls $0.16
|
||||
Player4 calls $0.16
|
||||
Dealing Turn [4s]
|
||||
Player2 checks
|
||||
Player3 bets $0.04
|
||||
Player4 calls $0.04
|
||||
Player5 raises to $0.72
|
||||
Player2 folds
|
||||
Player3 raises to $1.40
|
||||
Player4 calls $1.27 (all-in)
|
||||
Player5 folds
|
||||
Returning $0.13 to Player3 uncalled
|
||||
Player3 shows [2h 3d]
|
||||
Player4 shows [4d 9c]
|
||||
Dealing River [2c]
|
||||
Taking Rake of $0.40 from pot 1
|
||||
Player3 has Straight, 5 high
|
||||
Player3 wins $3.66 with: Straight, 5 high
|
||||
Seat 1: Player1 - $0.23
|
||||
Seat 2: Player2 - $5.08
|
||||
Seat 3: Player3 - $3.99
|
||||
Seat 4: allout96 - $3.99
|
||||
Seat 5: Player4 - $0
|
||||
Seat 6: Player5 - $3.08
|
||||
End Of Hand #746382682
|
||||
|
||||
|
|
|
@ -1,54 +1,54 @@
|
|||
Game #9581478205 starts.
|
||||
|
||||
#Game No : 9581478205
|
||||
***** Hand History for Game 9581478205 *****
|
||||
$0.50/$1 USD 7 Card Stud Hi-Lo - Monday, August 30, 20:20:17 EEST 2010
|
||||
Table Table 136403 (Real Money)
|
||||
Seat 0 is the button
|
||||
Total number of players : 7/8
|
||||
Seat 3: XMAN1 ( $24.95 USD )
|
||||
Seat 5: ISqzUSqueal ( $31.02 USD )
|
||||
Seat 7: PPPPPositive ( $4.20 USD )
|
||||
Seat 8: Unladylike ( $19 USD )
|
||||
Seat 6: YMAN1 ( $10.18 USD )
|
||||
Seat 2: strandalleen ( $17.55 USD )
|
||||
Seat 1: tubby09 ( $24.20 USD )
|
||||
tubby09 posts ante [$0.05 USD]
|
||||
strandalleen posts ante [$0.05 USD]
|
||||
XMAN1 posts ante [$0.05 USD]
|
||||
ISqzUSqueal posts ante [$0.05 USD]
|
||||
YMAN1 posts ante [$0.05 USD]
|
||||
PPPPPositive posts ante [$0.05 USD]
|
||||
Unladylike posts ante [$0.05 USD]
|
||||
** Dealing **
|
||||
Dealt to XMAN1 [ Td 5s 3c ]
|
||||
YMAN1 opens
|
||||
YMAN1 bring-ins [$0.25 USD]
|
||||
PPPPPositive completes [$0.50 USD]
|
||||
Unladylike folds
|
||||
tubby09 folds
|
||||
strandalleen calls [$0.50 USD]
|
||||
XMAN1 folds
|
||||
ISqzUSqueal folds
|
||||
YMAN1 calls [$0.25 USD]
|
||||
** Dealing Fourth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$0.50 USD]
|
||||
strandalleen calls [$0.50 USD]
|
||||
YMAN1 folds
|
||||
** Dealing Fifth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
** Dealing Sixth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
** Dealing River **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
PPPPPositive shows [ Ad, Qd, Ah, 2d, 7d, Th, 6d ]a flush, Ace high.
|
||||
strandalleen doesn't show [ 5h, 9d, 9c, Qc, 2h, Kc, Js ]a pair of Nines.
|
||||
PPPPPositive wins $8.45 USD from the main pot with a flush, Ace high.
|
||||
There was no qualifying low hand
|
||||
Game #9581478205 starts.
|
||||
|
||||
#Game No : 9581478205
|
||||
***** Hand History for Game 9581478205 *****
|
||||
$0.50/$1 USD 7 Card Stud Hi-Lo - Monday, August 30, 20:20:17 EEST 2010
|
||||
Table Table 136403 (Real Money)
|
||||
Seat 0 is the button
|
||||
Total number of players : 7/8
|
||||
Seat 3: XMAN1 ( $24.95 USD )
|
||||
Seat 5: ISqzUSqueal ( $31.02 USD )
|
||||
Seat 7: PPPPPositive ( $4.20 USD )
|
||||
Seat 8: Unladylike ( $19 USD )
|
||||
Seat 6: YMAN1 ( $10.18 USD )
|
||||
Seat 2: strandalleen ( $17.55 USD )
|
||||
Seat 1: tubby09 ( $24.20 USD )
|
||||
tubby09 posts ante [$0.05 USD]
|
||||
strandalleen posts ante [$0.05 USD]
|
||||
XMAN1 posts ante [$0.05 USD]
|
||||
ISqzUSqueal posts ante [$0.05 USD]
|
||||
YMAN1 posts ante [$0.05 USD]
|
||||
PPPPPositive posts ante [$0.05 USD]
|
||||
Unladylike posts ante [$0.05 USD]
|
||||
** Dealing **
|
||||
Dealt to XMAN1 [ Td 5s 3c ]
|
||||
YMAN1 opens
|
||||
YMAN1 bring-ins [$0.25 USD]
|
||||
PPPPPositive completes [$0.50 USD]
|
||||
Unladylike folds
|
||||
tubby09 folds
|
||||
strandalleen calls [$0.50 USD]
|
||||
XMAN1 folds
|
||||
ISqzUSqueal folds
|
||||
YMAN1 calls [$0.25 USD]
|
||||
** Dealing Fourth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$0.50 USD]
|
||||
strandalleen calls [$0.50 USD]
|
||||
YMAN1 folds
|
||||
** Dealing Fifth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
** Dealing Sixth street **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
** Dealing River **
|
||||
PPPPPositive opens
|
||||
PPPPPositive bets [$1 USD]
|
||||
strandalleen calls [$1 USD]
|
||||
PPPPPositive shows [ Ad, Qd, Ah, 2d, 7d, Th, 6d ]a flush, Ace high.
|
||||
strandalleen doesn't show [ 5h, 9d, 9c, Qc, 2h, Kc, Js ]a pair of Nines.
|
||||
PPPPPositive wins $8.45 USD from the main pot with a flush, Ace high.
|
||||
There was no qualifying low hand
|
||||
|
|
|
@ -1,225 +1,225 @@
|
|||
PokerStars Game #49164202872: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:32:15 ET
|
||||
Table 'Benkoela V' 8-max Seat #8 is the button
|
||||
Seat 1: Lino19 ($6.80 in chips)
|
||||
Seat 2: s0rrow ($5 in chips)
|
||||
Seat 3: jodarin ($0.70 in chips)
|
||||
Seat 4: Scorpio2000 ($3.40 in chips)
|
||||
Seat 5: buddyboy3399 ($8.25 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
Seat 8: Kula91 ($3.80 in chips)
|
||||
Lino19: posts small blind $0.10
|
||||
s0rrow: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [As 3h 8h 6s]
|
||||
jodarin: calls $0.25
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: calls $0.25
|
||||
JDANIELDC: folds
|
||||
Kula91: folds
|
||||
Kula91 leaves the table
|
||||
Lino19: calls $0.15
|
||||
s0rrow: checks
|
||||
*** FIRST DRAW ***
|
||||
Lino19: discards 1 card
|
||||
s0rrow: discards 2 cards [8h 6s]
|
||||
Dealt to s0rrow [As 3h] [5h Ks]
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: discards 1 card
|
||||
buddyboy3399: discards 2 cards
|
||||
Lino19: bets $0.25
|
||||
s0rrow: folds
|
||||
jodarin: calls $0.25
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: raises $0.25 to $0.50
|
||||
Lino19: calls $0.25
|
||||
jodarin: calls $0.20 and is all-in
|
||||
Scorpio2000: calls $0.25
|
||||
*** SECOND DRAW ***
|
||||
Lino19: discards 1 card
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: discards 1 card
|
||||
buddyboy3399: stands pat
|
||||
Lino19: checks
|
||||
Scorpio2000: bets $0.50
|
||||
buddyboy3399: calls $0.50
|
||||
Lino19: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
Lino19: discards 1 card
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: stands pat
|
||||
buddyboy3399: stands pat
|
||||
Lino19: checks
|
||||
Scorpio2000: bets $0.50
|
||||
buddyboy3399: calls $0.50
|
||||
Lino19: folds
|
||||
*** SHOW DOWN ***
|
||||
Scorpio2000: shows [8c 5d 7s Th] (Badugi: T,8,7,5)
|
||||
buddyboy3399: shows [8s 3d Ac 4h] (Badugi: 8,4,3,A)
|
||||
buddyboy3399 collected $2.55 from side pot
|
||||
jodarin: mucks hand
|
||||
buddyboy3399 collected $2.90 from main pot
|
||||
jodarin leaves the table
|
||||
*** SUMMARY ***
|
||||
Total pot $5.70 Main pot $2.90. Side pot $2.55. | Rake $0.25
|
||||
Seat 1: Lino19 (small blind) folded after the 3rd Draw
|
||||
Seat 2: s0rrow (big blind) folded after the 1st Draw
|
||||
Seat 3: jodarin mucked [Ad Td Qc 2s]
|
||||
Seat 4: Scorpio2000 showed [8c 5d 7s Th] and lost with a Badugi: T,8,7,5
|
||||
Seat 5: buddyboy3399 showed [8s 3d Ac 4h] and won ($5.45) with a Badugi: 8,4,3,A
|
||||
Seat 6: JDANIELDC folded before the Draw (didn't bet)
|
||||
Seat 8: Kula91 (button) folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164247462: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:25 ET
|
||||
Table 'Benkoela V' 8-max Seat #1 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.75 in chips)
|
||||
Seat 4: Scorpio2000 ($1.65 in chips)
|
||||
Seat 5: buddyboy3399 ($11.95 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
s0rrow: posts small blind $0.10
|
||||
Scorpio2000: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [3h Tc Kc Ad]
|
||||
oooDestroyoo joins the table at seat #3
|
||||
kallexx1 joins the table at seat #8
|
||||
buddyboy3399: folds
|
||||
JDANIELDC: folds
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
Uncalled bet ($0.15) returned to Scorpio2000
|
||||
Scorpio2000 collected $0.20 from pot
|
||||
Scorpio2000: doesn't show hand
|
||||
*** SUMMARY ***
|
||||
Total pot $0.20 | Rake $0
|
||||
Seat 1: Lino19 (button) folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow (small blind) folded before the Draw
|
||||
Seat 4: Scorpio2000 (big blind) collected ($0.20)
|
||||
Seat 5: buddyboy3399 folded before the Draw (didn't bet)
|
||||
Seat 6: JDANIELDC folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164255772: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:38 ET
|
||||
Table 'Benkoela V' 8-max Seat #2 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.65 in chips)
|
||||
Seat 4: Scorpio2000 ($1.75 in chips)
|
||||
Seat 5: buddyboy3399 ($11.95 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
Seat 8: kallexx1 ($5000 in chips)
|
||||
oooDestroyoo will be allowed to play after the button
|
||||
Scorpio2000: posts small blind $0.10
|
||||
buddyboy3399: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
kallexx1: posts big blind $0.25
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [4s 8s Kc 3h]
|
||||
JDANIELDC: calls $0.25
|
||||
kallexx1: checks
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
Scorpio2000: calls $0.15
|
||||
cuchiku leaves the table
|
||||
buddyboy3399: raises $0.25 to $0.50
|
||||
JDANIELDC: calls $0.25
|
||||
kallexx1: calls $0.25
|
||||
Scorpio2000: folds
|
||||
*** FIRST DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 2 cards
|
||||
kallexx1: stands pat
|
||||
buddyboy3399: bets $0.25
|
||||
JDANIELDC: folds
|
||||
kallexx1: calls $0.25
|
||||
*** SECOND DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
kallexx1: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
kallexx1: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
kallexx1: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
kallexx1: calls $0.50
|
||||
*** SHOW DOWN ***
|
||||
buddyboy3399: shows [Tc 3s 2s 7h] (3-card: T,7,2)
|
||||
kallexx1: shows [4c 4d 5s 6h] (3-card: 6,5,4)
|
||||
kallexx1 collected $4.05 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $4.25 | Rake $0.20
|
||||
Seat 1: Lino19 folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow (button) folded before the Draw (didn't bet)
|
||||
Seat 4: Scorpio2000 (small blind) folded before the Draw
|
||||
Seat 5: buddyboy3399 (big blind) showed [Tc 3s 2s 7h] and lost with a 3-card: T,7,2
|
||||
Seat 6: JDANIELDC folded after the 1st Draw
|
||||
Seat 8: kallexx1 showed [4c 4d 5s 6h] and won ($4.05) with a 3-card: 6,5,4
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164287914: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:34:29 ET
|
||||
Table 'Benkoela V' 8-max Seat #4 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.65 in chips)
|
||||
Seat 3: oooDestroyoo ($20 in chips)
|
||||
Seat 4: Scorpio2000 ($1.50 in chips)
|
||||
Seat 5: buddyboy3399 ($10.20 in chips)
|
||||
Seat 6: JDANIELDC ($8.25 in chips)
|
||||
Seat 8: kallexx1 ($5002.30 in chips)
|
||||
buddyboy3399: posts small blind $0.10
|
||||
JDANIELDC: posts big blind $0.25
|
||||
oooDestroyoo: posts big blind $0.25
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [2h 5c Kd 7h]
|
||||
kallexx1: folds
|
||||
kallexx1 leaves the table
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
oooDestroyoo: checks
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: calls $0.15
|
||||
JDANIELDC: checks
|
||||
*** FIRST DRAW ***
|
||||
buddyboy3399: discards 1 card
|
||||
JDANIELDC: discards 2 cards
|
||||
oooDestroyoo: discards 2 cards
|
||||
Scorpio2000: discards 2 cards
|
||||
buddyboy3399: bets $0.25
|
||||
JDANIELDC: calls $0.25
|
||||
oooDestroyoo: calls $0.25
|
||||
Scorpio2000: folds
|
||||
*** SECOND DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 1 card
|
||||
oooDestroyoo: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
JDANIELDC: calls $0.50
|
||||
oooDestroyoo: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 1 card
|
||||
oooDestroyoo: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
JDANIELDC: raises $0.50 to $1
|
||||
oooDestroyoo: calls $1
|
||||
buddyboy3399: calls $0.50
|
||||
*** SHOW DOWN ***
|
||||
JDANIELDC: shows [3c 4d 6h 8s] (Badugi: 8,6,4,3)
|
||||
oooDestroyoo: mucks hand
|
||||
buddyboy3399: mucks hand
|
||||
JDANIELDC collected $5.95 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $6.25 | Rake $0.30
|
||||
Seat 1: Lino19 folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow folded before the Draw (didn't bet)
|
||||
Seat 3: oooDestroyoo mucked [9d 3d 2s 7c]
|
||||
Seat 4: Scorpio2000 (button) folded after the 1st Draw
|
||||
Seat 5: buddyboy3399 (small blind) mucked [Qh 3s 4c Td]
|
||||
Seat 6: JDANIELDC (big blind) showed [3c 4d 6h 8s] and won ($5.95) with a Badugi: 8,6,4,3
|
||||
Seat 8: kallexx1 folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164202872: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:32:15 ET
|
||||
Table 'Benkoela V' 8-max Seat #8 is the button
|
||||
Seat 1: Lino19 ($6.80 in chips)
|
||||
Seat 2: s0rrow ($5 in chips)
|
||||
Seat 3: jodarin ($0.70 in chips)
|
||||
Seat 4: Scorpio2000 ($3.40 in chips)
|
||||
Seat 5: buddyboy3399 ($8.25 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
Seat 8: Kula91 ($3.80 in chips)
|
||||
Lino19: posts small blind $0.10
|
||||
s0rrow: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [As 3h 8h 6s]
|
||||
jodarin: calls $0.25
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: calls $0.25
|
||||
JDANIELDC: folds
|
||||
Kula91: folds
|
||||
Kula91 leaves the table
|
||||
Lino19: calls $0.15
|
||||
s0rrow: checks
|
||||
*** FIRST DRAW ***
|
||||
Lino19: discards 1 card
|
||||
s0rrow: discards 2 cards [8h 6s]
|
||||
Dealt to s0rrow [As 3h] [5h Ks]
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: discards 1 card
|
||||
buddyboy3399: discards 2 cards
|
||||
Lino19: bets $0.25
|
||||
s0rrow: folds
|
||||
jodarin: calls $0.25
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: raises $0.25 to $0.50
|
||||
Lino19: calls $0.25
|
||||
jodarin: calls $0.20 and is all-in
|
||||
Scorpio2000: calls $0.25
|
||||
*** SECOND DRAW ***
|
||||
Lino19: discards 1 card
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: discards 1 card
|
||||
buddyboy3399: stands pat
|
||||
Lino19: checks
|
||||
Scorpio2000: bets $0.50
|
||||
buddyboy3399: calls $0.50
|
||||
Lino19: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
Lino19: discards 1 card
|
||||
jodarin: discards 2 cards
|
||||
Scorpio2000: stands pat
|
||||
buddyboy3399: stands pat
|
||||
Lino19: checks
|
||||
Scorpio2000: bets $0.50
|
||||
buddyboy3399: calls $0.50
|
||||
Lino19: folds
|
||||
*** SHOW DOWN ***
|
||||
Scorpio2000: shows [8c 5d 7s Th] (Badugi: T,8,7,5)
|
||||
buddyboy3399: shows [8s 3d Ac 4h] (Badugi: 8,4,3,A)
|
||||
buddyboy3399 collected $2.55 from side pot
|
||||
jodarin: mucks hand
|
||||
buddyboy3399 collected $2.90 from main pot
|
||||
jodarin leaves the table
|
||||
*** SUMMARY ***
|
||||
Total pot $5.70 Main pot $2.90. Side pot $2.55. | Rake $0.25
|
||||
Seat 1: Lino19 (small blind) folded after the 3rd Draw
|
||||
Seat 2: s0rrow (big blind) folded after the 1st Draw
|
||||
Seat 3: jodarin mucked [Ad Td Qc 2s]
|
||||
Seat 4: Scorpio2000 showed [8c 5d 7s Th] and lost with a Badugi: T,8,7,5
|
||||
Seat 5: buddyboy3399 showed [8s 3d Ac 4h] and won ($5.45) with a Badugi: 8,4,3,A
|
||||
Seat 6: JDANIELDC folded before the Draw (didn't bet)
|
||||
Seat 8: Kula91 (button) folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164247462: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:25 ET
|
||||
Table 'Benkoela V' 8-max Seat #1 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.75 in chips)
|
||||
Seat 4: Scorpio2000 ($1.65 in chips)
|
||||
Seat 5: buddyboy3399 ($11.95 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
s0rrow: posts small blind $0.10
|
||||
Scorpio2000: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [3h Tc Kc Ad]
|
||||
oooDestroyoo joins the table at seat #3
|
||||
kallexx1 joins the table at seat #8
|
||||
buddyboy3399: folds
|
||||
JDANIELDC: folds
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
Uncalled bet ($0.15) returned to Scorpio2000
|
||||
Scorpio2000 collected $0.20 from pot
|
||||
Scorpio2000: doesn't show hand
|
||||
*** SUMMARY ***
|
||||
Total pot $0.20 | Rake $0
|
||||
Seat 1: Lino19 (button) folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow (small blind) folded before the Draw
|
||||
Seat 4: Scorpio2000 (big blind) collected ($0.20)
|
||||
Seat 5: buddyboy3399 folded before the Draw (didn't bet)
|
||||
Seat 6: JDANIELDC folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164255772: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:38 ET
|
||||
Table 'Benkoela V' 8-max Seat #2 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.65 in chips)
|
||||
Seat 4: Scorpio2000 ($1.75 in chips)
|
||||
Seat 5: buddyboy3399 ($11.95 in chips)
|
||||
Seat 6: JDANIELDC ($8.75 in chips)
|
||||
Seat 8: kallexx1 ($5000 in chips)
|
||||
oooDestroyoo will be allowed to play after the button
|
||||
Scorpio2000: posts small blind $0.10
|
||||
buddyboy3399: posts big blind $0.25
|
||||
cuchiku: sits out
|
||||
kallexx1: posts big blind $0.25
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [4s 8s Kc 3h]
|
||||
JDANIELDC: calls $0.25
|
||||
kallexx1: checks
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
Scorpio2000: calls $0.15
|
||||
cuchiku leaves the table
|
||||
buddyboy3399: raises $0.25 to $0.50
|
||||
JDANIELDC: calls $0.25
|
||||
kallexx1: calls $0.25
|
||||
Scorpio2000: folds
|
||||
*** FIRST DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 2 cards
|
||||
kallexx1: stands pat
|
||||
buddyboy3399: bets $0.25
|
||||
JDANIELDC: folds
|
||||
kallexx1: calls $0.25
|
||||
*** SECOND DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
kallexx1: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
kallexx1: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
kallexx1: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
kallexx1: calls $0.50
|
||||
*** SHOW DOWN ***
|
||||
buddyboy3399: shows [Tc 3s 2s 7h] (3-card: T,7,2)
|
||||
kallexx1: shows [4c 4d 5s 6h] (3-card: 6,5,4)
|
||||
kallexx1 collected $4.05 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $4.25 | Rake $0.20
|
||||
Seat 1: Lino19 folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow (button) folded before the Draw (didn't bet)
|
||||
Seat 4: Scorpio2000 (small blind) folded before the Draw
|
||||
Seat 5: buddyboy3399 (big blind) showed [Tc 3s 2s 7h] and lost with a 3-card: T,7,2
|
||||
Seat 6: JDANIELDC folded after the 1st Draw
|
||||
Seat 8: kallexx1 showed [4c 4d 5s 6h] and won ($4.05) with a 3-card: 6,5,4
|
||||
|
||||
|
||||
|
||||
PokerStars Game #49164287914: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:34:29 ET
|
||||
Table 'Benkoela V' 8-max Seat #4 is the button
|
||||
Seat 1: Lino19 ($5.55 in chips)
|
||||
Seat 2: s0rrow ($4.65 in chips)
|
||||
Seat 3: oooDestroyoo ($20 in chips)
|
||||
Seat 4: Scorpio2000 ($1.50 in chips)
|
||||
Seat 5: buddyboy3399 ($10.20 in chips)
|
||||
Seat 6: JDANIELDC ($8.25 in chips)
|
||||
Seat 8: kallexx1 ($5002.30 in chips)
|
||||
buddyboy3399: posts small blind $0.10
|
||||
JDANIELDC: posts big blind $0.25
|
||||
oooDestroyoo: posts big blind $0.25
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [2h 5c Kd 7h]
|
||||
kallexx1: folds
|
||||
kallexx1 leaves the table
|
||||
Lino19: folds
|
||||
s0rrow: folds
|
||||
oooDestroyoo: checks
|
||||
Scorpio2000: calls $0.25
|
||||
buddyboy3399: calls $0.15
|
||||
JDANIELDC: checks
|
||||
*** FIRST DRAW ***
|
||||
buddyboy3399: discards 1 card
|
||||
JDANIELDC: discards 2 cards
|
||||
oooDestroyoo: discards 2 cards
|
||||
Scorpio2000: discards 2 cards
|
||||
buddyboy3399: bets $0.25
|
||||
JDANIELDC: calls $0.25
|
||||
oooDestroyoo: calls $0.25
|
||||
Scorpio2000: folds
|
||||
*** SECOND DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 1 card
|
||||
oooDestroyoo: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
JDANIELDC: calls $0.50
|
||||
oooDestroyoo: calls $0.50
|
||||
*** THIRD DRAW ***
|
||||
buddyboy3399: stands pat
|
||||
JDANIELDC: discards 1 card
|
||||
oooDestroyoo: discards 1 card
|
||||
buddyboy3399: bets $0.50
|
||||
JDANIELDC: raises $0.50 to $1
|
||||
oooDestroyoo: calls $1
|
||||
buddyboy3399: calls $0.50
|
||||
*** SHOW DOWN ***
|
||||
JDANIELDC: shows [3c 4d 6h 8s] (Badugi: 8,6,4,3)
|
||||
oooDestroyoo: mucks hand
|
||||
buddyboy3399: mucks hand
|
||||
JDANIELDC collected $5.95 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $6.25 | Rake $0.30
|
||||
Seat 1: Lino19 folded before the Draw (didn't bet)
|
||||
Seat 2: s0rrow folded before the Draw (didn't bet)
|
||||
Seat 3: oooDestroyoo mucked [9d 3d 2s 7c]
|
||||
Seat 4: Scorpio2000 (button) folded after the 1st Draw
|
||||
Seat 5: buddyboy3399 (small blind) mucked [Qh 3s 4c Td]
|
||||
Seat 6: JDANIELDC (big blind) showed [3c 4d 6h 8s] and won ($5.95) with a Badugi: 8,6,4,3
|
||||
Seat 8: kallexx1 folded before the Draw (didn't bet)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,40 +1,40 @@
|
|||
PokerStars Game #48974407184: Single Draw 2-7 Lowball No Limit ($0.25/$0.50 USD) - 2010/09/01 9:49:52 ET
|
||||
Table 'Eucharis II' 7-max Seat #4 is the button
|
||||
Seat 1: Philippus40 ($60.90 in chips)
|
||||
Seat 2: barbus533 ($21.15 in chips)
|
||||
Seat 3: @sker86 ($82.60 in chips)
|
||||
Seat 4: nl pokerr ($49.15 in chips)
|
||||
Seat 5: heliodorus ($73.45 in chips)
|
||||
Seat 6: s0rrow ($20 in chips)
|
||||
Seat 7: KBH7 ($14 in chips)
|
||||
heliodorus: posts small blind $0.25
|
||||
s0rrow: posts big blind $0.50
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [2s 7d 4d 6d 8s]
|
||||
KBH7: folds
|
||||
Philippus40: folds
|
||||
barbus533: folds
|
||||
@sker86: raises $1.50 to $2
|
||||
nl pokerr: folds
|
||||
heliodorus: folds
|
||||
s0rrow: calls $1.50
|
||||
s0rrow: stands pat on [2s 7d 4d 6d 8s]
|
||||
@sker86: discards 1 card
|
||||
s0rrow: checks
|
||||
@sker86: checks
|
||||
*** SHOW DOWN ***
|
||||
s0rrow: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2)
|
||||
@sker86: mucks hand
|
||||
s0rrow collected $4.05 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $4.25 | Rake $0.20
|
||||
Seat 1: Philippus40 folded before Flop (didn't bet)
|
||||
Seat 2: barbus533 folded before Flop (didn't bet)
|
||||
Seat 3: @sker86 mucked [2h 8d 7h 7s 4s]
|
||||
Seat 4: nl pokerr (button) folded before Flop (didn't bet)
|
||||
Seat 5: heliodorus (small blind) folded before Flop
|
||||
Seat 6: s0rrow (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2
|
||||
Seat 7: KBH7 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
||||
PokerStars Game #48974407184: Single Draw 2-7 Lowball No Limit ($0.25/$0.50 USD) - 2010/09/01 9:49:52 ET
|
||||
Table 'Eucharis II' 7-max Seat #4 is the button
|
||||
Seat 1: Philippus40 ($60.90 in chips)
|
||||
Seat 2: barbus533 ($21.15 in chips)
|
||||
Seat 3: @sker86 ($82.60 in chips)
|
||||
Seat 4: nl pokerr ($49.15 in chips)
|
||||
Seat 5: heliodorus ($73.45 in chips)
|
||||
Seat 6: s0rrow ($20 in chips)
|
||||
Seat 7: KBH7 ($14 in chips)
|
||||
heliodorus: posts small blind $0.25
|
||||
s0rrow: posts big blind $0.50
|
||||
*** DEALING HANDS ***
|
||||
Dealt to s0rrow [2s 7d 4d 6d 8s]
|
||||
KBH7: folds
|
||||
Philippus40: folds
|
||||
barbus533: folds
|
||||
@sker86: raises $1.50 to $2
|
||||
nl pokerr: folds
|
||||
heliodorus: folds
|
||||
s0rrow: calls $1.50
|
||||
s0rrow: stands pat on [2s 7d 4d 6d 8s]
|
||||
@sker86: discards 1 card
|
||||
s0rrow: checks
|
||||
@sker86: checks
|
||||
*** SHOW DOWN ***
|
||||
s0rrow: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2)
|
||||
@sker86: mucks hand
|
||||
s0rrow collected $4.05 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $4.25 | Rake $0.20
|
||||
Seat 1: Philippus40 folded before Flop (didn't bet)
|
||||
Seat 2: barbus533 folded before Flop (didn't bet)
|
||||
Seat 3: @sker86 mucked [2h 8d 7h 7s 4s]
|
||||
Seat 4: nl pokerr (button) folded before Flop (didn't bet)
|
||||
Seat 5: heliodorus (small blind) folded before Flop
|
||||
Seat 6: s0rrow (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2
|
||||
Seat 7: KBH7 folded before Flop (didn't bet)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,117 +1,117 @@
|
|||
PokerStars Game #30506593746: 7 Card Stud Limit ($0.04/$0.08) - 2009/07/16 2:36:31 CET [2009/07/15 20:36:31 ET]
|
||||
Table 'Laomedon' 8-max
|
||||
Seat 1: Player1 ($1.81 in chips)
|
||||
Seat 2: Player2 ($2.46 in chips)
|
||||
Seat 3: Player3 ($1.67 in chips)
|
||||
Seat 4: Player4 ($0.35 in chips)
|
||||
Seat 5: Player5 ($1.75 in chips)
|
||||
Seat 6: Player6 ($2.92 in chips)
|
||||
Seat 7: Player7 ($1.54 in chips)
|
||||
Seat 8: Player8 ($0.71 in chips)
|
||||
Player1: posts the ante $0.01
|
||||
Player2: posts the ante $0.01
|
||||
Player3: posts the ante $0.01
|
||||
Player4: posts the ante $0.01
|
||||
Player5: posts the ante $0.01
|
||||
Player6: posts the ante $0.01
|
||||
Player7: posts the ante $0.01
|
||||
Player8: posts the ante $0.01
|
||||
*** 3rd STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c]
|
||||
Dealt to Player2 [Tc]
|
||||
Dealt to Player3 [6c]
|
||||
Dealt to Player4 [Js]
|
||||
Dealt to Player5 [Jd]
|
||||
Dealt to Player6 [2d]
|
||||
Dealt to Player7 [Jh]
|
||||
Dealt to Player8 [Kh]
|
||||
Player6: brings in for $0.02
|
||||
Player7: calls $0.02
|
||||
Player8: calls $0.02
|
||||
Player1: calls $0.02
|
||||
Player2: calls $0.02
|
||||
Player3: calls $0.02
|
||||
Player4: calls $0.02
|
||||
Player5: calls $0.02
|
||||
*** 4th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c] [9c]
|
||||
Dealt to Player2 [Tc] [7d]
|
||||
Dealt to Player3 [6c] [7h]
|
||||
Dealt to Player4 [Js] [2c]
|
||||
Dealt to Player5 [Jd] [4h]
|
||||
Dealt to Player6 [2d] [7c]
|
||||
Dealt to Player7 [Jh] [4c]
|
||||
Dealt to Player8 [Kh] [3d]
|
||||
Player8: checks
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
*** 5th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c 9c] [9d]
|
||||
Dealt to Player2 [Tc 7d] [8d]
|
||||
Dealt to Player3 [6c 7h] [3s]
|
||||
Dealt to Player4 [Js 2c] [9s]
|
||||
Dealt to Player5 [Jd 4h] [9h]
|
||||
Dealt to Player6 [2d 7c] [6d]
|
||||
Dealt to Player7 [Jh 4c] [5d]
|
||||
Dealt to Player8 [Kh 3d] [8s]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
Player8: checks
|
||||
*** 6th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c 9c 9d] [Th]
|
||||
Dealt to Player2 [Tc 7d 8d] [3c]
|
||||
Dealt to Player3 [6c 7h 3s] [Qh]
|
||||
Dealt to Player4 [Js 2c 9s] [8h]
|
||||
Dealt to Player5 [Jd 4h 9h] [2s]
|
||||
Dealt to Player6 [2d 7c 6d] [5h]
|
||||
Dealt to Player7 [Jh 4c 5d] [Td]
|
||||
Dealt to Player8 [Kh 3d 8s] [6s]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
Player8: checks
|
||||
*** RIVER *** [6h]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: bets $0.08
|
||||
Player4: folds
|
||||
Player5: calls $0.08
|
||||
Player6: calls $0.08
|
||||
Player7: folds
|
||||
Player8: calls $0.08
|
||||
Player1: folds
|
||||
Player2: folds
|
||||
*** SHOW DOWN ***
|
||||
Player3: shows [7s Qs 6c 7h 3s Qh] (two pair, Queens and Sevens)
|
||||
Player5: mucks hand
|
||||
Player6: mucks hand
|
||||
Player8: mucks hand
|
||||
Player3 collected $0.54 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $0.56 | Rake $0.02
|
||||
Board [6h]
|
||||
Seat 1: Player1 folded on the River
|
||||
Seat 2: Player2 folded on the River
|
||||
Seat 3: Player3 showed [7s Qs 6c 7h 3s Qh] and won ($0.54) with two pair, Queens and Sevens
|
||||
Seat 4: Player4 folded on the River
|
||||
Seat 5: Player5 mucked [Kd Ks Jd 4h 9h 2s]
|
||||
Seat 6: Player6 mucked [5s Ah 2d 7c 6d 5h]
|
||||
Seat 7: Player7 folded on the River
|
||||
Seat 8: Player8 mucked [Jc 3h Kh 3d 8s 6s]
|
||||
|
||||
|
||||
|
||||
PokerStars Game #30506593746: 7 Card Stud Limit ($0.04/$0.08) - 2009/07/16 2:36:31 CET [2009/07/15 20:36:31 ET]
|
||||
Table 'Laomedon' 8-max
|
||||
Seat 1: Player1 ($1.81 in chips)
|
||||
Seat 2: Player2 ($2.46 in chips)
|
||||
Seat 3: Player3 ($1.67 in chips)
|
||||
Seat 4: Player4 ($0.35 in chips)
|
||||
Seat 5: Player5 ($1.75 in chips)
|
||||
Seat 6: Player6 ($2.92 in chips)
|
||||
Seat 7: Player7 ($1.54 in chips)
|
||||
Seat 8: Player8 ($0.71 in chips)
|
||||
Player1: posts the ante $0.01
|
||||
Player2: posts the ante $0.01
|
||||
Player3: posts the ante $0.01
|
||||
Player4: posts the ante $0.01
|
||||
Player5: posts the ante $0.01
|
||||
Player6: posts the ante $0.01
|
||||
Player7: posts the ante $0.01
|
||||
Player8: posts the ante $0.01
|
||||
*** 3rd STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c]
|
||||
Dealt to Player2 [Tc]
|
||||
Dealt to Player3 [6c]
|
||||
Dealt to Player4 [Js]
|
||||
Dealt to Player5 [Jd]
|
||||
Dealt to Player6 [2d]
|
||||
Dealt to Player7 [Jh]
|
||||
Dealt to Player8 [Kh]
|
||||
Player6: brings in for $0.02
|
||||
Player7: calls $0.02
|
||||
Player8: calls $0.02
|
||||
Player1: calls $0.02
|
||||
Player2: calls $0.02
|
||||
Player3: calls $0.02
|
||||
Player4: calls $0.02
|
||||
Player5: calls $0.02
|
||||
*** 4th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c] [9c]
|
||||
Dealt to Player2 [Tc] [7d]
|
||||
Dealt to Player3 [6c] [7h]
|
||||
Dealt to Player4 [Js] [2c]
|
||||
Dealt to Player5 [Jd] [4h]
|
||||
Dealt to Player6 [2d] [7c]
|
||||
Dealt to Player7 [Jh] [4c]
|
||||
Dealt to Player8 [Kh] [3d]
|
||||
Player8: checks
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
*** 5th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c 9c] [9d]
|
||||
Dealt to Player2 [Tc 7d] [8d]
|
||||
Dealt to Player3 [6c 7h] [3s]
|
||||
Dealt to Player4 [Js 2c] [9s]
|
||||
Dealt to Player5 [Jd 4h] [9h]
|
||||
Dealt to Player6 [2d 7c] [6d]
|
||||
Dealt to Player7 [Jh 4c] [5d]
|
||||
Dealt to Player8 [Kh 3d] [8s]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
Player8: checks
|
||||
*** 6th STREET ***
|
||||
Dealt to Player1 [Ac Kc 8c 9c 9d] [Th]
|
||||
Dealt to Player2 [Tc 7d 8d] [3c]
|
||||
Dealt to Player3 [6c 7h 3s] [Qh]
|
||||
Dealt to Player4 [Js 2c 9s] [8h]
|
||||
Dealt to Player5 [Jd 4h 9h] [2s]
|
||||
Dealt to Player6 [2d 7c 6d] [5h]
|
||||
Dealt to Player7 [Jh 4c 5d] [Td]
|
||||
Dealt to Player8 [Kh 3d 8s] [6s]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: checks
|
||||
Player4: checks
|
||||
Player5: checks
|
||||
Player6: checks
|
||||
Player7: checks
|
||||
Player8: checks
|
||||
*** RIVER *** [6h]
|
||||
Player1: checks
|
||||
Player2: checks
|
||||
Player3: bets $0.08
|
||||
Player4: folds
|
||||
Player5: calls $0.08
|
||||
Player6: calls $0.08
|
||||
Player7: folds
|
||||
Player8: calls $0.08
|
||||
Player1: folds
|
||||
Player2: folds
|
||||
*** SHOW DOWN ***
|
||||
Player3: shows [7s Qs 6c 7h 3s Qh] (two pair, Queens and Sevens)
|
||||
Player5: mucks hand
|
||||
Player6: mucks hand
|
||||
Player8: mucks hand
|
||||
Player3 collected $0.54 from pot
|
||||
*** SUMMARY ***
|
||||
Total pot $0.56 | Rake $0.02
|
||||
Board [6h]
|
||||
Seat 1: Player1 folded on the River
|
||||
Seat 2: Player2 folded on the River
|
||||
Seat 3: Player3 showed [7s Qs 6c 7h 3s Qh] and won ($0.54) with two pair, Queens and Sevens
|
||||
Seat 4: Player4 folded on the River
|
||||
Seat 5: Player5 mucked [Kd Ks Jd 4h 9h 2s]
|
||||
Seat 6: Player6 mucked [5s Ah 2d 7c 6d 5h]
|
||||
Seat 7: Player7 folded on the River
|
||||
Seat 8: Player8 mucked [Jc 3h Kh 3d 8s 6s]
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,71 +1,71 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><session sessioncode="2752856781">
|
||||
<general>
|
||||
<mode>real</mode>
|
||||
<gametype>7 Card Stud L $0.05/$0.10</gametype>
|
||||
<tablename>Labyrinth</tablename>
|
||||
<duration>00:04</duration>
|
||||
<gamecount>2</gamecount>
|
||||
<startdate>2010-09-05 13:00:46</startdate>
|
||||
<currency>USD</currency>
|
||||
<nickname>exStingray</nickname>
|
||||
<bets>$0.04</bets>
|
||||
<wins>$0</wins>
|
||||
<chipsin>1</chipsin>
|
||||
<chipsout>0.88</chipsout>
|
||||
<ipoints>0.08</ipoints>
|
||||
|
||||
</general>
|
||||
<game gamecode="2418629537">
|
||||
<general>
|
||||
<startdate>2010-09-05 13:00:46</startdate>
|
||||
<players>
|
||||
<player seat="1" name="exStingray" chips="$1" dealer="1" win="$0" bet="$0.01" /><player seat="2" name="Binghai" chips="$0.73" dealer="0" win="$0.13" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.23" dealer="0" win="$0" bet="$0.01" /><player seat="5" name="komanchi7" chips="$0.59" dealer="0" win="$0" bet="$0.01" /><player seat="6" name="Qekz406" chips="$2.20" dealer="0" win="$0" bet="$0.03" /><player seat="7" name="axi0matic" chips="$3" dealer="0" win="$0" bet="$0.01" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.83" dealer="0" win="$0" bet="$0.03" />
|
||||
</players>
|
||||
</general>
|
||||
<round no="0">
|
||||
<action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/>
|
||||
</round>
|
||||
<round no="1">
|
||||
|
||||
</round>
|
||||
<round no="2">
|
||||
<cards type="Third Street" player="exStingray">X X H6</cards><action no="14" player="exStingray" type="0" sum="$0" cards=""/><cards type="Third Street" player="Binghai">H8 D7 C2</cards><action no="8" player="Binghai" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X HA</cards><action no="9" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Third Street" player="komanchi7">X X CQ</cards><action no="10" player="komanchi7" type="0" sum="$0" cards=""/><cards type="Third Street" player="Qekz406">H9 S6 C7</cards><action no="11" player="Qekz406" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="axi0matic">X X CK</cards><action no="12" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Third Street" player="Zsuzsanna">D8 HJ HK</cards><action no="13" player="Zsuzsanna" type="3" sum="$0.02" cards=""/>
|
||||
</round>
|
||||
<round no="3">
|
||||
<cards type="Fourth Street" player="Binghai">C5</cards><action no="16" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Qekz406">S10</cards><action no="17" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C10</cards><action no="15" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="4">
|
||||
<cards type="Fifth Street" player="Binghai">H2</cards><action no="20" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Qekz406">D10</cards><action no="18" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">H7</cards><action no="19" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="5">
|
||||
<cards type="Sixth Street" player="Binghai">H4</cards><action no="23" player="Binghai" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Qekz406">D2</cards><action no="21" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Zsuzsanna">H3</cards><action no="22" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="6">
|
||||
<cards type="River" player="Binghai">C4</cards><action no="26" player="Binghai" type="4" sum="$0" cards=""/><cards type="River" player="Qekz406">DQ</cards><action no="24" player="Qekz406" type="4" sum="$0" cards=""/><cards type="River" player="Zsuzsanna">DK</cards><action no="25" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
|
||||
</game><game gamecode="2418630592">
|
||||
<general>
|
||||
<startdate>2010-09-05 13:01:58</startdate>
|
||||
<players>
|
||||
<player seat="1" name="exStingray" chips="$0.99" dealer="1" win="$0" bet="$0.03" /><player seat="2" name="Binghai" chips="$0.83" dealer="0" win="$0" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.22" dealer="0" win="$0" bet="$0.03" /><player seat="5" name="komanchi7" chips="$0.58" dealer="0" win="$0.43" bet="$0.18" /><player seat="6" name="Qekz406" chips="$2.17" dealer="0" win="$0" bet="$0.01" /><player seat="7" name="axi0matic" chips="$2.99" dealer="0" win="$0" bet="$0.08" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.80" dealer="0" win="$0" bet="$0.08" />
|
||||
</players>
|
||||
</general>
|
||||
<round no="0">
|
||||
<action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/>
|
||||
</round>
|
||||
<round no="1">
|
||||
|
||||
</round>
|
||||
<round no="2">
|
||||
<cards type="Third Street" player="exStingray">D4 S7 C8</cards><action no="13" player="exStingray" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Binghai">X X D5</cards><action no="14" player="Binghai" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X S2</cards><action no="8" player="FENGLIUDUSHENG" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="komanchi7">X X H9</cards><action no="9" player="komanchi7" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Qekz406">X X CJ</cards><action no="10" player="Qekz406" type="0" sum="$0" cards=""/><cards type="Third Street" player="axi0matic">X X H10</cards><action no="11" player="axi0matic" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Zsuzsanna">X X H5</cards><action no="12" player="Zsuzsanna" type="3" sum="$0.02" cards=""/>
|
||||
</round>
|
||||
<round no="3">
|
||||
<cards type="Fourth Street" player="exStingray">H2</cards><action no="18" player="exStingray" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="Binghai">H7</cards><action no="19" player="Binghai" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="FENGLIUDUSHENG">H6</cards><action no="20" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="komanchi7">HQ</cards><action no="15" player="komanchi7" type="5" sum="$0.05" cards=""/><cards type="Fourth Street" player="axi0matic">D9</cards><action no="16" player="axi0matic" type="3" sum="$0.05" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C6</cards><action no="17" player="Zsuzsanna" type="3" sum="$0.05" cards=""/>
|
||||
</round>
|
||||
<round no="4">
|
||||
<cards type="Fifth Street" player="komanchi7">HA</cards><action no="21" player="komanchi7" type="5" sum="$0.10" cards=""/><cards type="Fifth Street" player="axi0matic">S8</cards><action no="22" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">D2</cards><action no="23" player="Zsuzsanna" type="0" sum="$0" cards=""/>
|
||||
</round>
|
||||
|
||||
</game>
|
||||
<?xml version="1.0" encoding="utf-8"?><session sessioncode="2752856781">
|
||||
<general>
|
||||
<mode>real</mode>
|
||||
<gametype>7 Card Stud L $0.05/$0.10</gametype>
|
||||
<tablename>Labyrinth</tablename>
|
||||
<duration>00:04</duration>
|
||||
<gamecount>2</gamecount>
|
||||
<startdate>2010-09-05 13:00:46</startdate>
|
||||
<currency>USD</currency>
|
||||
<nickname>exStingray</nickname>
|
||||
<bets>$0.04</bets>
|
||||
<wins>$0</wins>
|
||||
<chipsin>1</chipsin>
|
||||
<chipsout>0.88</chipsout>
|
||||
<ipoints>0.08</ipoints>
|
||||
|
||||
</general>
|
||||
<game gamecode="2418629537">
|
||||
<general>
|
||||
<startdate>2010-09-05 13:00:46</startdate>
|
||||
<players>
|
||||
<player seat="1" name="exStingray" chips="$1" dealer="1" win="$0" bet="$0.01" /><player seat="2" name="Binghai" chips="$0.73" dealer="0" win="$0.13" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.23" dealer="0" win="$0" bet="$0.01" /><player seat="5" name="komanchi7" chips="$0.59" dealer="0" win="$0" bet="$0.01" /><player seat="6" name="Qekz406" chips="$2.20" dealer="0" win="$0" bet="$0.03" /><player seat="7" name="axi0matic" chips="$3" dealer="0" win="$0" bet="$0.01" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.83" dealer="0" win="$0" bet="$0.03" />
|
||||
</players>
|
||||
</general>
|
||||
<round no="0">
|
||||
<action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/>
|
||||
</round>
|
||||
<round no="1">
|
||||
|
||||
</round>
|
||||
<round no="2">
|
||||
<cards type="Third Street" player="exStingray">X X H6</cards><action no="14" player="exStingray" type="0" sum="$0" cards=""/><cards type="Third Street" player="Binghai">H8 D7 C2</cards><action no="8" player="Binghai" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X HA</cards><action no="9" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Third Street" player="komanchi7">X X CQ</cards><action no="10" player="komanchi7" type="0" sum="$0" cards=""/><cards type="Third Street" player="Qekz406">H9 S6 C7</cards><action no="11" player="Qekz406" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="axi0matic">X X CK</cards><action no="12" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Third Street" player="Zsuzsanna">D8 HJ HK</cards><action no="13" player="Zsuzsanna" type="3" sum="$0.02" cards=""/>
|
||||
</round>
|
||||
<round no="3">
|
||||
<cards type="Fourth Street" player="Binghai">C5</cards><action no="16" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Qekz406">S10</cards><action no="17" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C10</cards><action no="15" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="4">
|
||||
<cards type="Fifth Street" player="Binghai">H2</cards><action no="20" player="Binghai" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Qekz406">D10</cards><action no="18" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">H7</cards><action no="19" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="5">
|
||||
<cards type="Sixth Street" player="Binghai">H4</cards><action no="23" player="Binghai" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Qekz406">D2</cards><action no="21" player="Qekz406" type="4" sum="$0" cards=""/><cards type="Sixth Street" player="Zsuzsanna">H3</cards><action no="22" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
<round no="6">
|
||||
<cards type="River" player="Binghai">C4</cards><action no="26" player="Binghai" type="4" sum="$0" cards=""/><cards type="River" player="Qekz406">DQ</cards><action no="24" player="Qekz406" type="4" sum="$0" cards=""/><cards type="River" player="Zsuzsanna">DK</cards><action no="25" player="Zsuzsanna" type="4" sum="$0" cards=""/>
|
||||
</round>
|
||||
|
||||
</game><game gamecode="2418630592">
|
||||
<general>
|
||||
<startdate>2010-09-05 13:01:58</startdate>
|
||||
<players>
|
||||
<player seat="1" name="exStingray" chips="$0.99" dealer="1" win="$0" bet="$0.03" /><player seat="2" name="Binghai" chips="$0.83" dealer="0" win="$0" bet="$0.03" /><player seat="3" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="4" name="FENGLIUDUSHENG" chips="$1.22" dealer="0" win="$0" bet="$0.03" /><player seat="5" name="komanchi7" chips="$0.58" dealer="0" win="$0.43" bet="$0.18" /><player seat="6" name="Qekz406" chips="$2.17" dealer="0" win="$0" bet="$0.01" /><player seat="7" name="axi0matic" chips="$2.99" dealer="0" win="$0" bet="$0.08" /><player seat="8" name="" chips="$0" dealer="0" win="$0" bet="$0" /><player seat="9" name="ad1028" chips="$3.58" dealer="0" win="$0" bet="$0" /><player seat="10" name="Zsuzsanna" chips="$0.80" dealer="0" win="$0" bet="$0.08" />
|
||||
</players>
|
||||
</general>
|
||||
<round no="0">
|
||||
<action no="1" player="exStingray" type="15" sum="$0.01" cards="[cards]"/><action no="2" player="Binghai" type="15" sum="$0.01" cards="[cards]"/><action no="3" player="FENGLIUDUSHENG" type="15" sum="$0.01" cards="[cards]"/><action no="4" player="komanchi7" type="15" sum="$0.01" cards="[cards]"/><action no="5" player="Qekz406" type="15" sum="$0.01" cards="[cards]"/><action no="6" player="axi0matic" type="15" sum="$0.01" cards="[cards]"/><action no="7" player="Zsuzsanna" type="15" sum="$0.01" cards="[cards]"/>
|
||||
</round>
|
||||
<round no="1">
|
||||
|
||||
</round>
|
||||
<round no="2">
|
||||
<cards type="Third Street" player="exStingray">D4 S7 C8</cards><action no="13" player="exStingray" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Binghai">X X D5</cards><action no="14" player="Binghai" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="FENGLIUDUSHENG">X X S2</cards><action no="8" player="FENGLIUDUSHENG" type="16" sum="$0.02" cards=""/><cards type="Third Street" player="komanchi7">X X H9</cards><action no="9" player="komanchi7" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Qekz406">X X CJ</cards><action no="10" player="Qekz406" type="0" sum="$0" cards=""/><cards type="Third Street" player="axi0matic">X X H10</cards><action no="11" player="axi0matic" type="3" sum="$0.02" cards=""/><cards type="Third Street" player="Zsuzsanna">X X H5</cards><action no="12" player="Zsuzsanna" type="3" sum="$0.02" cards=""/>
|
||||
</round>
|
||||
<round no="3">
|
||||
<cards type="Fourth Street" player="exStingray">H2</cards><action no="18" player="exStingray" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="Binghai">H7</cards><action no="19" player="Binghai" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="FENGLIUDUSHENG">H6</cards><action no="20" player="FENGLIUDUSHENG" type="0" sum="$0" cards=""/><cards type="Fourth Street" player="komanchi7">HQ</cards><action no="15" player="komanchi7" type="5" sum="$0.05" cards=""/><cards type="Fourth Street" player="axi0matic">D9</cards><action no="16" player="axi0matic" type="3" sum="$0.05" cards=""/><cards type="Fourth Street" player="Zsuzsanna">C6</cards><action no="17" player="Zsuzsanna" type="3" sum="$0.05" cards=""/>
|
||||
</round>
|
||||
<round no="4">
|
||||
<cards type="Fifth Street" player="komanchi7">HA</cards><action no="21" player="komanchi7" type="5" sum="$0.10" cards=""/><cards type="Fifth Street" player="axi0matic">S8</cards><action no="22" player="axi0matic" type="0" sum="$0" cards=""/><cards type="Fifth Street" player="Zsuzsanna">D2</cards><action no="23" player="Zsuzsanna" type="0" sum="$0" cards=""/>
|
||||
</round>
|
||||
|
||||
</game>
|
||||
</session>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user