Open Side Menu Go to the Top

02-19-2010 , 09:01 AM
I’d like a Poker Stars script that is very stripped down from what I see here. I play three or four tables and would appreciate some help with a script that has only the following functions:

1. Highlights the active table with a frame border of a user-selected color
2. A programmable hot key that Folds or Check/Folds depending upon whether or not it is an action or advanced action situation.
3. A programmable hot key that Checks.
4. A programmable hot key that goes All In
5. A programmable hot key to cycle through the tables (the scripts I’ve tried using seem to bounce around randomly)

Is item 2 even possible? I have paid for TableNinja, but it doesn’t seem to be able to do this using one key. Thank you in advance for any assistance.
PS AHK Script Request Quote
PS AHK Script Request
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
PS AHK Script Request
02-19-2010 , 09:40 AM
Tableninja should be able to do all that, my free StarsCash script will allow you to do all those things too.
PS AHK Script Request Quote
02-19-2010 , 10:29 AM
Quote:
Originally Posted by Max1mums
Tableninja should be able to do all that, my free StarsCash script will allow you to do all those things too.
TableNinja uses two keys for item 2. This is the one big complaint I have with it. Also, TableNinja does not work with a lot of table mods.
PS AHK Script Request Quote
02-19-2010 , 05:27 PM
BetPot AHK does exactly #2 - hits the fold button, check fold advance if available or if not advance fold with a single keypress. If yopu run starsplanner to handle the popups the same hotkeyt will check instead of fold if it's your action and checking is an option.

I guess max1mum's Starscash is the same since it uses the BetPot code for betting pot, but maybe not the same for folding? try em both see what works, at the least betpot + starsplanner will handle #2 exactly as you describe.
PS AHK Script Request Quote
02-19-2010 , 07:10 PM
Thanks for the help guys. I guess 45 years as an IT manager hasn't taught me much. When I try your suggestion regarding StarsCash, I see a bunch of stuff I didn't inquire about and can't even locate the All-In hot key setting or a way to modify the table frame setting.

GL.. I guess I will stick with Tableninja and put up with what I don't like about it.
PS AHK Script Request Quote
02-20-2010 , 10:27 AM
Quote:
Originally Posted by AllenZ
5. A programmable hot key to cycle through the tables (the scripts I’ve tried using seem to bounce around randomly)
Cycle trough the tables with the mousewheel:
Code:
WheelUp::
MouseGetPos,,,tableID
WinGetClass, tableIDclass, ahk_id %tableID%
if tableIDclass = PokerStarsTableFrameClass
	{
	WinSet, Bottom,, ahk_id %tableID%
	}
else
	{
	Send {WheelUp}
	}
return

WheelDown::
MouseGetPos,,,tableID
WinGetClass, tableIDclass, ahk_id %tableID%
if tableIDclass = PokerStarsTableFrameClass
	{
	WinGet, tableID, IDLast, ahk_class PokerStarsTableFrameClass
	WinSet, Top,, ahk_id %tableID%
	}
else
	{
	Send {WheelDown}
	}
return
Cycle through the tables using any other 2 buttons/keys:
Code:
~MButton::
MouseGetPos,,,tableID
WinGetClass, tableIDclass, ahk_id %tableID%
if tableIDclass = PokerStarsTableFrameClass
	{
	WinSet, Bottom,, ahk_id %tableID%
	}
return

~RButton::
MouseGetPos,,,tableID
WinGetClass, tableIDclass, ahk_id %tableID%
if tableIDclass = PokerStarsTableFrameClass
	{
	WinGet, tableID, IDLast, ahk_class PokerStarsTableFrameClass
	WinSet, Top,, ahk_id %tableID%
	}
return
PS AHK Script Request Quote
PS AHK Script Request
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
PS AHK Script Request

      
m