Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-27-2007, 04:49 PM
runhot runhot is offline
Senior Member
 
Join Date: Nov 2006
Location: Stacking Chips
Posts: 1,162
Default cascade helper

the cascade helper right click for 2.5x doesnt work anymore.
Reply With Quote
  #2  
Old 08-27-2007, 07:53 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: cascade helper

link to script?
Reply With Quote
  #3  
Old 08-31-2007, 12:47 AM
runhot runhot is offline
Senior Member
 
Join Date: Nov 2006
Location: Stacking Chips
Posts: 1,162
Default Re: cascade helper

bah i cant find it.. i guess ill post it here. the script only does a couple things (i had changed it to tile the tables instead of cascade)

seems to be perfect still excpet the right click to 2.5bb

F1- tiles tables
F2- closes lobbys
F3- All in (also *)

right click in table raises pf bet to 2.5 BB

here it is
---------------------------------------------
---------------------------------------------


;
; 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.


#NoEnv
#Persistent
#SingleInstance force
#Include %a_scriptDir%
#Include Functions.ahk

interval = 100 ; period between refreshes

Loop
{
AutoRegister()
NoMsgBox()
Sleep %interval%
}

F1::tile()
return
tile()
{SetTitleMatchMode, 1
WinWait, PokerStars Lobby
WinActivate, PokerStars Lobby
WinWaitActive, PokerStars Lobby
WinMenuSelectItem, PokerStars Lobby,,View,Tile
}

F2:: ;__Closes tournament lobbies
CloseTournamentLobby()
return



F3:: ;__Pushes all-in
NumpadMult::
MouseGetPos,,, curWin
ControlSetText, Edit7, 999999, ahk_id%curWin%
return




~RButton::
F4::
WinGet,id,,A
WinGetTitle, title, ahk_id%id%

IfInString, title, No Limit Hold'em
{
Slash := Instr(title, "/") + 2
Space := Instr(title, " ", false, Slash)
BBLength := Space - Slash
StringMid, Bigblind, title, Slash, BBLength
Transform, RaiseAmount, Round, Bigblind * 2.5

MouseGetPos,,, curWin
ControlSetText, Edit7, %RaiseAmount%, ahk_id%curWin%
}
return


Autoregister()
{SetTitleMatchMode 2
IfWinExist, Tournament Registration
{
WinActivate
Control, Check
ControlClick, OK
Sendraw keys {Space}
}
}
CloseTournamentLobby()
{
Loop {
SetTitleMatchMode 2
IfWinExist, Lobby,, PokerStars Lobby
WinClose
else
break
}
}

NoMsgBox()
{
IfWinExist, PokerStars, OK
WinClose
IfWinExist, PokerStars, Internal
Sleep 500
WinClose, PokerStars, Internal

IfWinExist, PokerStars, Check
{
ControlClick, Check
Sendraw keys {Space}
}

return
}
Reply With Quote
  #4  
Old 08-31-2007, 02:48 PM
_dave_ _dave_ is offline
Senior Member
 
Join Date: Feb 2005
Location: UK
Posts: 2,628
Default Re: cascade helper

Hi,

The F3 -> AllIn function should be broken too... I guess you don't use that one often?

To fix, change the two references to "Edit7" to "PokerStarsSliderEditorClass1" (without quotes) - save, reload, should be working again [img]/images/graemlins/smile.gif[/img]

dave.
Reply With Quote
  #5  
Old 09-02-2007, 11:18 AM
runhot runhot is offline
Senior Member
 
Join Date: Nov 2006
Location: Stacking Chips
Posts: 1,162
Default Re: cascade helper

thanks dave. much appreciated
Reply With Quote
Reply


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 08:56 AM.


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