|
|
I may be able to write something that speeds up getting the hand histories together. I've just had a quick go and come up with this. You'll need to make a copy of your hand history, called HH.txt and then run this script in the same directory. It will create a new file called HH_new.txt which will only contain the Game (hand) numbers and the hole cards. I should be able to get it to read in all the hand history files and combine them into one. I'll have a go at it when I get more time.
Code:
Loop, read, HH.txt, HH_new.txt
{
IfInString, A_LoopReadLine, Game
{
StringMid, A, A_LoopReadLine, 12, 17
FileAppend, %A%`n
}
IfInString, A_LoopReadLine, Dealt
FileAppend, %A_LoopReadLine%`n`n
}
|