|
Free Software Discussion of Free / Freeware / Donationware / Open Source poker software and Free Graphics mods |
07-26-2011, 08:11 AM
|
#1176
|
enthusiast
Join Date: Apr 2008
Posts: 53
|
Re: FPHG available
Quote:
Originally Posted by jspill
yeah 2 commas, not sure why, but its working
|
It is the syntax of that function:
Quote:
IfWinActive [, WinTitle, WinText, ExcludeTitle, ExcludeText]
IfWinNotActive [, WinTitle, WinText, ExcludeTitle, ExcludeText]
UniqueID := WinActive("WinTitle", "WinText", "ExcludeTitle", "ExcludeText")
|
2 commas to let a parameter be NULL.
http://www.autohotkey.com/docs/commands/IfWinActive.htm
corp
|
|
|
07-27-2011, 01:39 AM
|
#1177
|
veteran
Join Date: Jan 2005
Location: Poker is hard
Posts: 3,171
|
Re: FPHG available
Thanks Corp, appreciate it  I will try it tonight
|
|
|
07-28-2011, 10:00 AM
|
#1178
|
adept
Join Date: Mar 2007
Posts: 1,101
|
Re: FPHG available
Quote:
Originally Posted by Lessu
it is allowed
|
Is there a public source to confirm this?
|
|
|
07-28-2011, 11:04 AM
|
#1179
|
Thailand Guru
Join Date: Mar 2006
Location: Finn Land
Posts: 9,007
|
Re: FPHG available
Quote:
Originally Posted by pasita
Is there a public source to confirm this?
|
well I could post dozen emails where I have told party I am using it since sometimes they ask what 3rd party software ppl use when they report a problem.
if you want confirmation email party?
|
|
|
07-28-2011, 11:19 AM
|
#1180
|
enthusiast
Join Date: Apr 2008
Posts: 53
|
Re: FPHG available
Quote:
Originally Posted by pasita
Is there a public source to confirm this?
|
Support has confirm it when I asked them long time ago... of course, my party skin, not party poker, but same rules apply to all skins in the network I supose...
corp
|
|
|
08-20-2011, 12:00 PM
|
#1181
|
grinder
Join Date: Oct 2006
Posts: 635
|
Re: FPHG available
PP change their s/w for lobby. Nothing seems to be working the same as in opening a bunch of tables to data mine etc. ?????
Last edited by ez2cy; 08-20-2011 at 12:08 PM.
|
|
|
08-24-2011, 08:54 AM
|
#1182
|
grinder
Join Date: Oct 2006
Posts: 635
|
Re: FPHG available
Rebooted and tables opening up but I get the message about "being idle connection lost, (after awhile) please click ok to re establish" which it doesn't.
What I have in my hotkey, which has always worked is.
loop
{
WinMinimize, PartyPoker.com: Poker Lobby
WinActivate, PartyPoker.com: Poker Lobby
MouseClick, left, 1, 1
Sleep, 60000
}
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Do I need to change anything?
Thanks in advance.
|
|
|
08-25-2011, 06:54 PM
|
#1183
|
Pooh-Bah
Join Date: Sep 2005
Location: stuck in craving and aversion
Posts: 3,729
|
Re: FPHG available
New update on Party broke the WPT poker trick of re-naming the .exe to PartyGaming
any ideas?
edit: nevermind, after re-naming and restarting a bunch appears to be working again.
|
|
|
08-25-2011, 09:08 PM
|
#1184
|
Carpal \'Tunnel
Join Date: Sep 2004
Posts: 11,363
|
Re: FPHG available
Quote:
Originally Posted by ez2cy
Rebooted and tables opening up but I get the message about "being idle connection lost, (after awhile) please click ok to re establish" which it doesn't.
What I have in my hotkey, which has always worked is.
loop
{
WinMinimize, PartyPoker.com: Poker Lobby
WinActivate, PartyPoker.com: Poker Lobby
MouseClick, left, 1, 1
Sleep, 60000
}
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Do I need to change anything?
Thanks in advance.
|
I've not been playing much this month - can anybody else confirm this?
Juk
|
|
|
08-28-2011, 05:44 AM
|
#1185
|
Pooh-Bah
Join Date: Sep 2005
Location: stuck in craving and aversion
Posts: 3,729
|
Re: FPHG available
I have one that should work, PM me for more details but here's the raw code:
Quote:
Loop
{
WinWait, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
IfWinNotActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** , , WinActivate, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
WinWaitActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
MouseClick, left, 222, 50
Sleep, 595000
WinWait, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
IfWinNotActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** , , WinActivate, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
WinWaitActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
MouseClick, left, 231, 49
Sleep, 100
WinWait, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
IfWinNotActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** , , WinActivate, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
WinWaitActive, PartyPoker.com: Poker Lobby - Good luck **AccountName** ,
MouseClick, left, 250, 47
Sleep, 100
}
|
obv replace **AccountName** with your real account name
|
|
|
09-05-2011, 12:35 AM
|
#1186
|
journeyman
Join Date: Nov 2006
Posts: 241
|
Re: FPHG available
Quote:
Originally Posted by coxquinn
New update on Party broke the WPT poker trick of re-naming the .exe to PartyGaming
any ideas?
edit: nevermind, after re-naming and restarting a bunch appears to be working again.
|
Hey, I tried renaming the WPT.exe file to PartyGaming.exe but the program just doesnt open anymore? Tried one reboot. Even when I rename it WPT it doesnt open.
Is this the best way to get this to work for WPT/gamebookers?
|
|
|
09-05-2011, 02:26 AM
|
#1187
|
Carpal \'Tunnel
Join Date: Feb 2009
Location: IG
Posts: 8,218
|
Re: FPHG available
dont open it from the application .exe, use the desktop shortcut, weird but that will then work, it did for me. i had the same thing, clicking the .exe did nothing.
and when u rename WPT make it PartyGaming, don't actually type the .exe
maybe reinstall before u do all that
|
|
|
09-05-2011, 03:03 PM
|
#1188
|
journeyman
Join Date: Nov 2006
Posts: 241
|
Re: FPHG available
yup everything works now thanks
|
|
|
09-09-2011, 03:35 PM
|
#1189
|
stranger
Join Date: Sep 2011
Posts: 1
|
Re: FPHG available
Is there a simple fix to make FreePHG work with the PartyPoker.FR skin? I tried renaming the executable to PartyGaming.exe and it shows up as PARTYGAMING for the process name, but it still doesn't seem to save hands.
|
|
|
09-16-2011, 02:12 AM
|
#1190
|
grinder
Join Date: Sep 2006
Posts: 587
|
Re: FPHG available
Is there any way to automated dataming sit and goes ?
I mean by automated some soft loke Party tools that open and close sit when start/finish
Thanks
|
|
|
09-17-2011, 06:07 PM
|
#1191
|
adept
Join Date: Mar 2007
Posts: 1,101
|
Re: FPHG available
Well, I asked Party support (actually got reply from their Game Fairness and Security team), they say use of this program is not allowed and they request me not to use FPHG.
Would be kind of cool if they made a clear statement of this in their T&C also, but hey, this is Party. They (and Party rep alike) so far failed to point out to me the part in ther T&C that forbids this.
|
|
|
09-17-2011, 11:49 PM
|
#1192
|
Thailand Guru
Join Date: Mar 2006
Location: Finn Land
Posts: 9,007
|
Re: FPHG available
Quote:
Originally Posted by pasita
Well, I asked Party support (actually got reply from their Game Fairness and Security team), they say use of this program is not allowed and they request me not to use FPHG.
Would be kind of cool if they made a clear statement of this in their T&C also, but hey, this is Party. They (and Party rep alike) so far failed to point out to me the part in ther T&C that forbids this.
|
well this is just complete BS unless party has changed something in the last month and failed to announce to everyone again
when ever i report a bug to party they ask what 3rd party software I use and I always tell them FPHG. they have never said anything about it
|
|
|
09-18-2011, 12:35 PM
|
#1193
|
adept
Join Date: Mar 2007
Posts: 1,101
|
Re: FPHG available
I'm not sure which part you refer to as BS, but that's the info I got from Party rep here and their Game Fairness and Security team, what ever that is. I don't know if their tech people are competent enough to decipher what FPHG means.
Beats me why they don't make that info public, though. Their T&C is very ambiguous on the matter (and is 4 years old also).
If any one has had FPHG officially ok'd by a Party rep of any sort, I'd be happy to hear about it.
|
|
|
09-19-2011, 10:23 AM
|
#1194
|
adept
Join Date: May 2006
Posts: 868
|
Re: FPHG available
If I can't use fphg anymore, I'll just leave party. Multitabling without betpot scripts is a sure way to get all kinds of wrist, elbow, and shoulder problems. And no need to make an issue out of it, just use it unless they specifically ask you to stop imo.
|
|
|
09-19-2011, 01:23 PM
|
#1195
|
old hand
Join Date: Dec 2010
Location: Somewhere over the rainbow
Posts: 1,961
|
Re: FPHG available
so what does datamining have to do with betpot and carpal tunnel symptoms?
great program juk, tried it for first time and it works like a charm
|
|
|
09-21-2011, 01:01 AM
|
#1196
|
stranger
Join Date: Sep 2011
Posts: 3
|
Re: FPHG available
I opened 4 tables , FPGH start datamine writing hhfs and suddenly after 50 min or so 4 tables froze.
I closed manually and opened another 4 and they work until 50 min they froze again.
Im using party client , not logging and Party tools keeping the conection alive .
Vista 64 bit with administrator rights
Any idea ?
|
|
|
09-21-2011, 01:19 AM
|
#1197
|
Thailand Guru
Join Date: Mar 2006
Location: Finn Land
Posts: 9,007
|
Re: FPHG available
Quote:
Originally Posted by claudiagmail
I opened 4 tables , FPGH start datamine writing hhfs and suddenly after 50 min or so 4 tables froze.
I closed manually and opened another 4 and they work until 50 min they froze again.
Im using party client , not logging and Party tools keeping the conection alive .
Vista 64 bit with administrator rights
Any idea ?
|
are you using holdemmanager?
|
|
|
09-21-2011, 01:15 PM
|
#1198
|
stranger
Join Date: Sep 2011
Posts: 3
|
Re: FPHG available
When datamining Holdemmanager is close
I use HM only when playing
|
|
|
09-21-2011, 01:38 PM
|
#1199
|
Carpal \'Tunnel
Join Date: Feb 2009
Location: IG
Posts: 8,218
|
Re: FPHG available
Sometimes the client will disconnect itself randomly, there's nothing you can do about it. I have a script that refreshes the lobby every 10 mins and sometimes it will work for hours while I'm at the PC and then suddenly party decides to spazz out.
The only way to really keep it alive is set the script to do it's job every ~15 seconds (see below, add in your SN), and have it running a different PC/while you're asleep. I'm not sure what you're doing with partytools, but that might not be working either.
Code:
Loop
{
WinWait, PartyPoker.com: Poker Lobby - Good luck XXXX ,
IfWinNotActive, PartyPoker.com: Poker Lobby - Good luck XXXX , , WinActivate, PartyPoker.com: Poker Lobby - Good luck XXXX ,
WinWaitActive, PartyPoker.com: Poker Lobby - Good luck XXXX ,
MouseClick, left, 54, 97
Sleep, 15000
}
|
|
|
09-22-2011, 12:43 AM
|
#1200
|
stranger
Join Date: Sep 2011
Posts: 3
|
Re: FPHG available
Quote:
Originally Posted by jspill
Sometimes the client will disconnect itself randomly, there's nothing you can do about it. I have a script that refreshes the lobby every 10 mins and sometimes it will work for hours while I'm at the PC and then suddenly party decides to spazz out.
The only way to really keep it alive is set the script to do it's job every ~15 seconds (see below, add in your SN), and have it running a different PC/while you're asleep. I'm not sure what you're doing with partytools, but that might not be working either.
Code:
Loop
{
WinWait, PartyPoker.com: Poker Lobby - Good luck XXXX ,
IfWinNotActive, PartyPoker.com: Poker Lobby - Good luck XXXX , , WinActivate, PartyPoker.com: Poker Lobby - Good luck XXXX ,
WinWaitActive, PartyPoker.com: Poker Lobby - Good luck XXXX ,
MouseClick, left, 54, 97
Sleep, 15000
}
|
Thanks . I need some more help , the script is an .ahk ?
If I have to add my SN in the code I suppose I have to be loged in ?
|
|
|
Thread Tools |
|
Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 06:09 PM.
|