Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > PL/NL Texas Hold'em > Medium Stakes
FAQ Community Calendar Today's Posts Search

View Poll Results: K8 Suited
Call 26 92.86%
Raise 2 7.14%
Muck 0 0%
Voters: 28. You may not vote on this poll

Closed Thread
 
Thread Tools Display Modes
  #3891  
Old 08-22-2007, 01:41 PM
Unknown Soldier Unknown Soldier is offline
Senior Member
 
Join Date: Sep 2006
Posts: 8,587
Default Re: Official Party Regulars Thread

oh yeah increasing min BI would be awesome. 75bbs be stetching it too far?
  #3892  
Old 08-22-2007, 02:04 PM
MrHoobris MrHoobris is offline
Senior Member
 
Join Date: Feb 2005
Location: Vancouver
Posts: 170
Default Re: Official Party Regulars Thread

Got back from vacation and my auto-buyin/rebuy script went down with the update. The one on overcards hasn't been updated. Can anybody point me in the direction of a working one? Thanks.
  #3893  
Old 08-22-2007, 02:05 PM
aislephive aislephive is offline
Senior Member
 
Join Date: Oct 2005
Location: And now the children are asleep
Posts: 6,874
Default Re: Official Party Regulars Thread

Mine uses the delete key, but you can set it to whatever you want.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Code begins here ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;------------------------------------------------------------------------------------------------
; Chip Reloader v0.11
;------------------------------------------------------------------------------------------------
; Date: 2006-05-23
; AHK version: 1.0.44.01
;------------------------------------------------------------------------------------------------
; Author(s): Adde @ 2+2 forums
; Contact: HstreamPoker at gmail dot com
;------------------------------------------------------------------------------------------------
; Reload chips on all Partypoker and Pokerstars tables with just one click.
; See web page for more details.
;
; http://overcards.com/wiki/moin.cgi/ChipReloader
;
; All rights reserved. Use at your own risk.
;------------------------------------------------------------------------------------------------

;_________________________________________________ _______________________________________________
;
; EDIT THESE SETTINGS
;_________________________________________________ _______________________________________________

; Set what hotkeys should perform the reload. Leave blank to not use this function as a hotkey.
; List of available hotkeys: http://www.autohotkey.com/docs/KeyList.htm

cr_hotkey_reload = Delete

; Set if Party and/or Stars reload should be performed (1) or not (0).

cr_reload_party = 1
cr_reload_stars = 0

;_________________________________________________ _______________________________________________
;
; DO NOT EDIT BELOW HERE
;_________________________________________________ _______________________________________________

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; auto-execute ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

#NoEnv
#SingleInstance Ignore
#Persistent

cr_scriptpad_command_header = Chip Reloader
cr_scriptpad_command_name = Reload All Tables
cr_scriptpad_command_label = CR_ReloadAll_Label
cr_scriptpad_command_enabled = 1

cr_web_page = http://overcards.com/wiki/moin.cgi/PokerReloader

Hotkey, %cr_hotkey_reload%, CR_ReloadAll_Label, UseErrorLevel

goto CR_Scriptpad_End

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; labels ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

CR_ReloadAll_Label:
CR_ReloadAll()
return

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

CR_ReloadAll()
{
global
if (cr_reload_party)
CR_ReloadParty()
if (cr_reload_stars)
CR_ReloadStars()
SoundBeep, , 50
}

CR_ReloadParty()
{
SetTitleMatchMode, 2
WinGet, idList, list, Good Luck ahk_class #32770, , PartyPoker.com:
Loop, %idList%
{
winID := idList%a_index%
CR_ReloadPartyTable(winID)
}
}

CR_ReloadPartyTable(winID)
{
ControlGet, result, Visible, , AfxWnd42u1, ahk_id %winID%
if (not result)
return
ControlGet, result, Visible, , Button5, ahk_id %winID%
if (not result)
return
ControlClick, AfxWnd42u1, ahk_id%winID%
sleep, 300
IfWinExist, PartyPoker.com ahk_class #32770, You can take a maximum
{
WinClose, PartyPoker.com ahk_class #32770, You can take a maximum
return
}

WinWait, Buy-In ahk_class #32770, , 2
if (ErrorLevel <> 0)
return
WinActivate, Buy-In ahk_class #32770
ControlFocus, Button2, Buy-In ahk_class #32770
SendInput {SPACE}
sleep 300

IfWinExist, PartyPoker.com ahk_class #32770, Please enter an amount
{
WinClose, PartyPoker.com ahk_class #32770, Please enter an amount
WinClose, Buy-In ahk_class #32770
return
}
IfWinExist, PartyPoker.com ahk_class #32770, You can bring a maximum
{
WinClose, PartyPoker.com ahk_class #32770, You can bring a maximum
WinClose, Buy-In ahk_class #32770
return
}

WinWaitClose, Buy-In ahk_class #32770, , 2
Loop
{
IfWinNotExist, Buy-In ahk_class #32770
return
WinActivate, Buy-In ahk_class #32770
ControlFocus, Button1, Buy-In ahk_class #32770
SendInput {SPACE}
WinWaitClose, Buy-In ahk_class #32770, , 1
}

WinWait, PartyPoker.com, Additional chips, 1
if (ErrorLevel <> 0)
return
ControlFocus, Button1, PartyPoker.com, Additional chips
SendInput {SPACE}
WinWaitClose, PartyPoker.com, Additional chips, 2
Loop
{
IfWinNotExist, PartyPoker.com, Additional chips
return
ControlFocus, Button1, PartyPoker.com, Additional chips
SendInput {SPACE}
WinWaitClose, PartyPoker.com, Additional chips, 2
}
}

CR_ReloadStars()
{
SetTitleMatchMode, 2
WinGet, idList, list, Logged In as, , PokerStars Lobby
Loop, %idList%
{
winID := idList%a_index%
CR_ReloadStarsTable(winID)
}
}

CR_ReloadStarsTable(winID)
{
WinActivate, ahk_id %winID%
CR_PostLeftClick(400, 80, winID)

SetTitleMatchMode, 2
WinWait, Options, Add More Chips, 3
WinGet, winID, ID, Options, Add More Chips
if (winID = "")
return
if CR_ButtonDisabled(winID,"Button5")
return
ControlFocus, Button5, ahk_id %winID%
SendInput {SPACE}

stopTime := A_Now
EnvAdd, stopTime, 5, seconds
loop
{
IfWinExist, PokerStars, Your rebuy cannot be processed
{
WinClose, PokerStars, Your rebuy cannot be processed
return
}
IfWinExist, Buy-in, Allowed maximum
break
if (A_Now > stopTime)
return
}

WinGet, winID, ID, Buy-in, Allowed maximum
if (winID = "")
return

if CR_ButtonDisabled(winID, "Button2")
return
ControlFocus, Button2, ahk_id %winID%
SendInput {SPACE}
sleep, 100

if CR_ButtonDisabled(winID, "Button4")
return
ControlFocus, Button4, ahk_id %winID%
SendInput {SPACE}
sleep, 300

IfWinExist, PokerStars, Your stack will be updated when the current hand is finished
WinClose, PokerStars, Your stack will be updated when the current hand is finished
}

CR_ButtonDisabled(winID, buttonName)
{
ControlGet, result, Enabled, , %buttonName%, ahk_id %winID%
if (result = false)
WinClose, ahk_id %winID%
return (result=false)
}

CR_PostLeftClick(x, y, table_id)
{ ; ### JUK: Send the down left click, then the mouse-up messages.
; NOTE: This is relative to the top left of the client area and NOT the top left of the
; window (ie: It *doesn't* include the title-bar like AHK's MouseClick does!!!).
Postmessage 0x201, 0x0001, ((y*65536)+x), , ahk_id%table_id%
Postmessage 0x202, 0, ((y*65536)+x), , ahk_id%table_id%
}

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; scriptpad ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

CR_Scriptpad_End:
; Do nothing. This is needed to work with Scriptpad.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Code ends here ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  #3894  
Old 08-22-2007, 02:28 PM
mj12 mj12 is offline
Senior Member
 
Join Date: May 2005
Location: very very handsome
Posts: 1,320
Default Re: Official Party Regulars Thread

My spyware is picking up PP as a potential threat, this happening it anyone else?
  #3895  
Old 08-22-2007, 02:29 PM
MrHoobris MrHoobris is offline
Senior Member
 
Join Date: Feb 2005
Location: Vancouver
Posts: 170
Default Re: Official Party Regulars Thread

Awesome. Thanks.
  #3896  
Old 08-22-2007, 02:43 PM
tozzy tozzy is offline
Senior Member
 
Join Date: Nov 2006
Location: Vienna
Posts: 2,182
Default Re: Official Party Regulars Thread

uh a rebuy script that does NOT actually bug all the time? great!
  #3897  
Old 08-22-2007, 04:27 PM
ledders07 ledders07 is offline
Senior Member
 
Join Date: Apr 2007
Location: suburban knight
Posts: 566
Default Re: Official Party Regulars Thread

[ QUOTE ]
Is it only me having problem with Partypoker suddendly crashes (the client closes and opens up itself again).

[/ QUOTE ]

kind of different, whenever i log off at teh end of the session, it automatically turns back on. how do i fix this?
  #3898  
Old 08-22-2007, 06:23 PM
tufat23 tufat23 is offline
Senior Member
 
Join Date: Feb 2006
Location: wafflecrushing your sister
Posts: 7,933
Default Re: Official Party Regulars Thread

[ QUOTE ]
I would pay a couple hundred bucks for Party to implement the timebank.

[/ QUOTE ]


i'd pay double to have less time to think and no time bank obv.




[ QUOTE ]
[ QUOTE ]
Is it only me having problem with Partypoker suddendly crashes (the client closes and opens up itself again).

[/ QUOTE ]

kind of different, whenever i log off at teh end of the session, it automatically turns back on. how do i fix this?

[/ QUOTE ]


had both of these. hasnt happened recently, but i have no idea wtf is going on
  #3899  
Old 08-22-2007, 06:31 PM
fatpipe fatpipe is offline
Member
 
Join Date: Jan 2007
Posts: 90
Default Re: Official Party Regulars Thread

Damn, can't datamine anymore with the new client version. After a few hours the client freezes or get shut down completely.

Can't believe how buggy the software suddenly is.
  #3900  
Old 08-22-2007, 06:45 PM
aislephive aislephive is offline
Senior Member
 
Join Date: Oct 2005
Location: And now the children are asleep
Posts: 6,874
Default Re: Official Party Regulars Thread

Heaterrrrrrr:

Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 11:55 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.