Open Side Menu Go to the Top
Register
cascade helper cascade helper

08-27-2007 , 04:49 PM
the cascade helper right click for 2.5x doesnt work anymore.
cascade helper Quote
08-27-2007 , 07:53 PM
link to script?
cascade helper Quote
08-31-2007 , 12:47 AM
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
}
cascade helper Quote
08-31-2007 , 02:48 PM
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

dave.
cascade helper Quote
09-02-2007 , 11:18 AM
thanks dave. much appreciated
cascade helper Quote

      
m