![]() |
|
#481
|
|||
|
|||
|
Modification to instantly grab Party hands.
Unzip the folder and moved it to: C:\Program Files\PartyGaming\PartyPoker\HandHistory\FreePHG_v 0_06 Open the folder and locate the run.bat file. 1. RIGHT click on run.bat, choose EDIT 2. Change the text to look like the text below: @echo off FreePHG.exe -e txt 3. Go to file->save & then close it What that run.bat file does is open FreePHG and change the custom option to write .txt files instead of .hhf files - the .txt files can be auto imported using the party auto import function Open auto import like normal and you are good to go. Thanks to Brandon (TheStation) for this mod. |
|
#482
|
|||
|
|||
|
Juk's kinda here still [img]/images/graemlins/tongue.gif[/img], but not very easy to upload stuff from here (slow as [censored] net connection, etc).
I'm trying to avoid using the net for a few weeks too *give my RSI a break!), but if anything REALLY desperate comes up then you can still post or email and i'll try to check once every day, or so, for posts/emails. Will be back properly by about the 15th of June, but until then only deperate stuff plz [img]/images/graemlins/smile.gif[/img] Juk [img]/images/graemlins/smile.gif[/img] |
|
#483
|
|||
|
|||
|
I'd like to know what exactly the loophole is. I can't find it after reading this thread for 10 minutes.
|
|
#484
|
|||
|
|||
|
[ QUOTE ]
I'd like to know what exactly the loophole is. I can't find it after reading this thread for 10 minutes. [/ QUOTE ]I'm pretty sure it's never been explicitly stated. However, Juk did post his source. -Sam |
|
#485
|
|||
|
|||
|
[ QUOTE ]
[ QUOTE ] I'd like to know what exactly the loophole is. I can't find it after reading this thread for 10 minutes. [/ QUOTE ]I'm pretty sure it's never been explicitly stated. However, Juk did post his source. -Sam [/ QUOTE ] Juk was quoting when he called it a loophole; it's not really much of a loophole (which sounds like some sort of tricky exploit.) That's sort of why Juk was set off in the first place; it's really basic stuff. It's pretty clear if you read through the (openly posted) source code: this app reads through the memory that Party is using, looks for anything that looks like a hand history, and dumps it to disk. Reading the memory is achieved through a commonly known and commonly used Windows API call. The techniques used to try to optimize the scanning process (such as Juk's approach of building a 32-bit character string and scanning at 8-bit aligned addresses) are actually more sophisticated than the basic process used to read the memory. |
|
#486
|
|||
|
|||
|
Just wanted to say this is a kewl little app, have just discovered it, I'm also a programmer and a poker player and it's kewl to see someone doing this kind of stuff, makes me realise I should be more active on this forum from now on, there's so much info here - wish I had more time.
Anyway thanks Juk great work. |
|
#487
|
|||
|
|||
|
So I stole some code from various AHK-scripts that have been posted in the software forum and used it to write a script that opens PokerTracker and starts auto-import, it opens FPHG and it opens iWitness.
I created a folder called DataMining and in this folder I put all the stuff from iWitness and FPHG as well as the below code, otherwise the handhistories would end up in the wrong folder. <font class="small">Code:</font><hr /><pre> ;;;;;;;;;;;;;;;;;;;;;;;;;; ; Begin PokerTracker Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; Process, Exist, ptrack2.exe ptpid = %ErrorLevel% if ptpid <> 0 { IfWinExist Poker Tracker { WinActivate } } else { Run C:\Program Files\Poker Tracker V2\ptrack2.exe WinWait Poker Tracker WinActivate Sleep, 3000 ; Let it check for a newer version Click 82, 64 ; Sleep, 500 ; Starts auto-import. Click 90, 340 ; } ;;;;;;;;;;;;;;;;;;;;;;;;;; ; End PokerTracker Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;; ; Begin iWitness Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; Process, Exist, iWitness p4tid = %ErrorLevel% if p4tid <> 0 { if WinExist iWitness { WinActivate } } else { Run C:\Program Files\AutoHotkey\PokerScripts\DataMining\iWitness. ahk } ;;;;;;;;;;;;;;;;;;;;;;;;;; ; End iWitness Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;; ; Begin FreePHG Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; Process, Exist, FreePHG p4tid = %ErrorLevel% if p4tid <> 0 { if WinExist FreePHG { WinActivate } } else { Run C:\Program Files\AutoHotkey\PokerScripts\DataMining\FreePHG.e xe } ;;;;;;;;;;;;;;;;;;;;;;;;;; ; End FreePHG Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;; </pre><hr /> Note that I use the auto-import party handhistory function and not the lightning bold. Peter |
|
#488
|
|||
|
|||
|
I'm not too sure what is meant by creating a new folder to run FPHG from... I simply unzipped the FPHG files into my PartyPoker folder ie. where all the .hhfs are saved... I'm running FPHG.exe out of the PartyPoker folder, is this ok ?
|
|
#489
|
|||
|
|||
|
edited: im a retard and fixed my own mistake
|
|
#490
|
|||
|
|||
|
[ QUOTE ]
I'm not too sure what is meant by creating a new folder to run FPHG from... I simply unzipped the FPHG files into my PartyPoker folder ie. where all the .hhfs are saved... I'm running FPHG.exe out of the PartyPoker folder, is this ok ? [/ QUOTE ] As far as FreePHG and PokierTracker are concerned, that's OK, and it works well. Some people were concerned, early on, that Party might not like seeing it there, if they looked. It seems to not be an issue. |
![]() |
|
|