maybe the longest ranking game ever?

General Issues about Poker
Post Reply
User avatar
coruja
Posts: 110
Joined: Sun Apr 04, 2021 12:01 am
Been thanked: 6 times

I've just played a ranking game, which from my experience has been extraordinarily long, and ended after 104 hands.

Here's the log analysis as evidence.

I've played some few ranking games up to 90s hands, but not ever one for 100+ hands so far...

During the end of that game I said that that game would never end, one crazy hand after the other, luck really went mad. :shock:

So, can anyone top this crazy game? ;)
boehmi
Posts: 821
Joined: Wed Mar 17, 2021 12:24 pm
Been thanked: 34 times

I only found a game with 103 hands ;) I have 3 ranking games with over 100 hands since 2017.

gamelog?pdb=b3610f9915149679acc814f106d ... &game_id=2

Code: Select all

#!/bin/bash

dir="xxx"      #change the path to logfiles!!!

cd "$dir"
for file in *.pdb;do
#  games=$(sqlite3 $file "SELECT COUNT(*) FROM Game")
games=$(sqlite3 $file "SELECT UniqueGameID FROM Game")
  for game in $games;do
    players=$(sqlite3 $file "SELECT COUNT(*) FROM Player WHERE UniqueGameID = $game")
    if [ $players -eq 10 ];then
      hands=$(sqlite3 $file "SELECT HandID FROM Hand WHERE UniqueGameID = $game AND HandId = $1")
      blind=$(sqlite3 $file "SELECT Sb_Amount FROM Hand WHERE UniqueGameID = $game AND HandId = 12")
      if [ "$hands" != "" ] && [ "$blind" == "100" ];then
        echo $file Game $game
      fi
    fi
  done
done

run the script with

script.sh <minimum Hands>
Post Reply