Open Side Menu Go to the Top
Register
StarsCash - free script for PokerStars containing all functions cash player may need. StarsCash - free script for PokerStars containing all functions cash player may need.

01-10-2010 , 10:07 PM
Excuse me for my ignorance, but what are we supposed to do with the starspics exactly?
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-10-2010 , 10:26 PM
Put starspics folder to the folder with ahk file, starspics are needed for BetPot function only.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-10-2010 , 10:42 PM
I'll pay 10$ to have auto-timebank support for the black theme
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-10-2010 , 11:40 PM
Replace Clicktime() function (at line 712) with this code:
Code:
clicktime()
{
global SlickTheme,BlackTheme
winget,list,list,Logged In ahk_class PokerStarsTableFrameClass
loop %list%
{
 id:=list%A_index%
 if BlackTheme
 col:=PixelColorA(0.5775,0.7431,id,1) 
 else
 if SlickTheme
 col:=PixelColorA(0.4920,0.7958,id,1)
 else 
 col:=PixelColorA(0.6500,0.7670,id,1)
 if (instr(col,"13484978")) or (instr(col,"1000084")) or (instr(col,"16777215")) 
 {
  if BlackTheme
  { 
  click_x :=0.5875
  click_y :=0.7531
  }
  else
  if SlickTheme
  { 
  click_x :=0.5047
  click_y :=0.8256
  }
  else
  {
  click_x :=0.6582
  click_y :=0.7729
  }
  PostClickStars(click_x, click_y, id, 0)
 }
}
}
return
Or you can use this script if you need timebank only: http://depositfiles.com/files/5ggtxofbw
My PokerStars nickname is Max1mums
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 05:58 AM
Thanks
Money sent.

Great job with the script
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 01:09 PM
Hey Max1mums amazing work!

I think I found a bug, please check.
The "Suspend hotkey for chat/notes area" and the "Activate next table" doesn't seem to work together, eg. 'Q' as my activate next table won't type the letter 'Q' in my chat box instead cycles thru the tables.

Also I'd like to request a new feature - a notification pop up for suspend hotkeys.

Thanks!
Ayin~
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 01:52 PM
That's not a bug, just table hotkeys get suspended for chat/notes area for now, global hotkeys are supposed to be global (work everywhere) but i can change that if more people will request it.
Quote:
Also I'd like to request a new feature - a notification pop up for suspend hotkeys
Do you mean hotkeys suspended for chat area or suspended with suspend hotkey? Script's icon in the tray gets changed after suspend hotkey press.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 02:17 PM
Quote:
Originally Posted by Max1mums
That's not a bug, just table hotkeys get suspended for chat/notes area for now, global hotkeys are supposed to be global (work everywhere) but i can change that if more people will request it.

Do you mean hotkeys suspended for chat area or suspended with suspend hotkey? Script's icon in the tray gets changed after suspend hotkey press.
oops missed the global hotkeys thing, hmm... guess that would depend on how ppl like to setup their keys, I usually like the letters near my left hand.

The suspended with suspend hotkey, I know the icon changes, but I'm on Win7 which auto hides them (I like it this way... nit I know I know... ) Something like the "toggle click i'm back box" that pops up.

cheers!
Ayin~
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 02:35 PM
That's not a problem, i'll add it into next release and i can send you modified version right now, read PM.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:06 PM
Can you add option to auto close table when time bank reaches 0 ?
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:12 PM
What kind of option is that? Anyway there isn't any easy way to determine moment when timebank reaches 0.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:13 PM
LOL
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:23 PM
If you can't do it is ok, in info you can see timebank. Sometimes when I'm playing a lot of tables the timebank reaches 0 and it keeps getting I'm away and folding good hands. So I have to play very fast in those tables.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:26 PM
oh i see what he means. when your timebank runs out, stars only gives you the 15s default time or whatever, then autofolds you. he doesnt want to play on those (fast?) tables when his timebank is empty
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 03:32 PM
Quote:
Originally Posted by greg nice
oh i see what he means. when your timebank runs out, stars only gives you the 15s default time or whatever, then autofolds you. he doesnt want to play on those (fast?) tables when his timebank is empty
Exactly
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-11-2010 , 04:12 PM
Well i guess that can be added but i don't think that alot of people might need it.
I can make simple script for you which will have that function only.
Code:
#Persistent
#SingleInstance, Force
Settitlematchmode, 2

SetTimer,check,500
return

check:
winget,list,list,Logged In ahk_class PokerStarsTableFrameClass
loop %list%
{
 id:=list%A_index%
 controlgettext,text,PokerStarsInfoClass2,ahk_id%id%
 if instr(text,"Time bank balance is 0 seconds")
 {
  winclose,ahk_id %id%
  winwait, Table ahk_class #32770,,1
  if !errorlevel
  {
   ControlFocus,Button1, Table ahk_class #32770
   Sleep, -1
   ControlClick,Button1, Table ahk_class #32770
  }
 }
}
return

Last edited by Max1mums; 01-11-2010 at 04:30 PM.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 06:55 AM
I tried to use this and I get this error:

Error: Parameter #1 invalid

Specifically: IntegerFast

Line#
481: pix. =p . "."
482: }
483: }
484: }
485: Else
486: {
487: pix :=DllCall("GetPixel","Ulnt",hdc_buffer,"Int",x,"in t",y)
---> 488: SetFormat,IntegerFast,hex

The program will exit.



I'm not sure what I'm doing wrong, any ideas?
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 09:52 AM
I found "Join waiting list on all tables" and "Unjoin waiting list on all tables" are not working for me. WinXP.

Could we have "Join waiting list" hotkey like in stars hotkeys it was default for "w"?
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 09:58 AM
nostrakhan, that was discussed earlier, you need autohotkey version 1.0.48 at least, latest version can be found here: http://www.autohotkey.com/download/
Gytiz, and which table theme are you using? Maybe you misunderstood what that function was supposed to do exactly, Starshotkeys function joins waitlist from Lobby and hotkeys in this script join you on all opened tables (by pressing join waiting list button)
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:01 AM
Slick theme.

PS also double click on "cashier" shortcut brings to "cash out"
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:06 AM
Yes, then I misunderstood. Thank You.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:18 AM
I'll add hotkey for joining waitlist from lobby and maybe hotkey to join specified number of waitlists counting from selected table in next version.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:21 AM
Let's say I have
F2 - Join waiting list
F3 - Unjoin waiting list on all tables

I open 4 tables and I need to press F2 sometimes 2 sometimes 4 times to join in all of them. Same with F3 and unjoining, sometimes one click is enouth sometimes not.

Maybe it's my laptop? I play on Samsung NC10 connected to 23" monitor.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:23 AM
Quote:
Originally Posted by Max1mums
I'll add hotkey for joining waitlist from lobby and maybe hotkey to join specified number of waitlists counting from selected table in next version.
That would be great!

Also can I ask:
why we have "uncheck wait for big blind"? how is it possible anyone would use this?

Last edited by Gytiz; 01-12-2010 at 10:33 AM.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote
01-12-2010 , 10:26 AM
And why not? It is a possibility which should be added (it is optional anyway), i'm using it at least while testing script , i don't have that much time to wait for big blind.
StarsCash - free script for PokerStars containing all functions cash player may need. Quote

      
m