|
|
| Free Software Discussion of Free / Freeware / Donationware / Open Source poker software and Free Graphics mods |
07-25-2011, 09:10 PM
|
#1171
|
|
Pooh-Bah
Join Date: Feb 2009
Posts: 4,351
|
Re: FPHG available
I don't know much about scripts so can't really say what's wrong with yours, but I managed to make one myself that works using autoscriptwriter that comes with autohotkey when you install it (open it under start menu -> programs, you just hit record and do something on screen and it writes a script of your actions for you). It's just:
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, 211, 48
Sleep, 595000
}
Try that. I'm not sure mouseclick 1,1 in your script is enough to stop it disconnecting. Mine hits the 'balance' word, and it stays connected
|
|
|
07-25-2011, 10:32 PM
|
#1172
|
|
Pooh-Bah
Join Date: Feb 2009
Posts: 4,351
|
Re: FPHG available
actually i have it click 3 times with a split second delay, just to make sure it registers
Code:
Loop
{
WinWait, WPT Poker: Poker Lobby - Good luck xxx ,
IfWinNotActive, WPT Poker: Poker Lobby - Good luck xxx , , WinActivate, WPT Poker: Poker Lobby - Good luck xxx ,
WinWaitActive, WPT Poker: Poker Lobby - Good luck xxx ,
MouseClick, left, 211, 48
Sleep, 595000
WinWait, WPT Poker: Poker Lobby - Good luck xxx ,
IfWinNotActive, WPT Poker: Poker Lobby - Good luck xxx , , WinActivate, WPT Poker: Poker Lobby - Good luck xxx ,
WinWaitActive, WPT Poker: Poker Lobby - Good luck xxx ,
MouseClick, left, 211, 48
Sleep, 100
WinWait, WPT Poker: Poker Lobby - Good luck xxx ,
IfWinNotActive, WPT Poker: Poker Lobby - Good luck xxx , , WinActivate, WPT Poker: Poker Lobby - Good luck xxx ,
WinWaitActive, WPT Poker: Poker Lobby - Good luck xxx ,
MouseClick, left, 211, 48
Sleep, 100
}
|
|
|
07-25-2011, 11:07 PM
|
#1173
|
|
veteran
Join Date: Jan 2005
Location: Poker is hard
Posts: 3,109
|
Re: FPHG available
Quote:
Originally Posted by jspill
I don't know much about scripts so can't really say what's wrong with yours, but I managed to make one myself that works using autoscriptwriter that comes with autohotkey when you install it (open it under start menu -> programs, you just hit record and do something on screen and it writes a script of your actions for you). It's just:
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, 211, 48
Sleep, 595000
}
Try that. I'm not sure mouseclick 1,1 in your script is enough to stop it disconnecting. Mine hits the 'balance' word, and it stays connected
|
Thanks ill try both of those. Silly question but are you using two commars with a space between such as "Good luck xxxx , , WinActivate" instead of "Good luck xxxx, WinActivate" Thanks
|
|
|
07-26-2011, 03:25 AM
|
#1174
|
|
enthusiast
Join Date: Apr 2008
Posts: 53
|
Re: FPHG available
Quote:
Originally Posted by deepsquat
Ive edited it to reflect the window change that Corp mentioned in #1129
Also when i try to edit ini file it says access denied when trying to save it.
Any help would be greatly appreciated 
|
Your problem it is not related to the script itself, that looks fine, but of administration rights under Windows 7.
You have to do two things:
1.- To edit the ahk file you have to go to the start menu, select Notepad, right-click on it and chose "Run as administrator" and click yes/ok when prompted. Then you have full rights to write in the folder where PartyKeepAlive.ahk is located. Open the file, edit it and then save whatever you want to change. This time, it will allow you to save the file.
2.- To get the script working you have to (again) give admin right to the script. To do this go to the folder where you installed AutoHotKey (probably c:\program files\autohotkey) then select the file "AutoHotkey.exe" right-click and select properties. In the lower part of the screen youll see something like "Run this program as administrator" (i am not sure of the exact message, I dont have W7 on this machine, but it will be pretty close), check it and close.
Now, everytime you run the script youll be prompted with a window to allow the program to execute with admin rights. Click on yes/ok, and thats all.
In fact, my PartyKeepAlive.ahk file looks like (I do play at azartiapoker, not partypoker, thats why the window name its been changed):
Quote:
#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.
loop
{
WinMinimize, azartiapoker.com: Poker Lobby
WinActivate, azartiapoker.com: Poker Lobby
MouseClick, left, 1, 1
WinMinimize, azartiapoker.com: Poker Lobby
Sleep, 60000
}
|
corp
|
|
|
07-26-2011, 05:38 AM
|
#1175
|
|
Pooh-Bah
Join Date: Feb 2009
Posts: 4,351
|
Re: FPHG available
Quote:
Originally Posted by deepsquat
Thanks ill try both of those. Silly question but are you using two commars with a space between such as "Good luck xxxx , , WinActivate" instead of "Good luck xxxx, WinActivate" Thanks
|
yeah 2 commas, not sure why, but its working
|
|
|
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,109
|
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: 723
|
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: 6,008
|
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: 409
|
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: 409
|
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: 10,213
|
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
|
|
|
| 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 10:31 AM.
|