Open Side Menu Go to the Top
Register
Chiren's one million hands in one month challenge Chiren's one million hands in one month challenge

11-14-2009 , 03:44 PM
Quote:
Originally Posted by cds0699
Chiren, that set up you have where it stacks the tables, then pops them out when they require a action...... is really sick. Any chance on you developing it? I'd be interested in purchasing it if you do, especially if you can design it to work with both FTP and Stars!
Hehe maybe a suggestion for FTP or PS theirselves
11-14-2009 , 03:53 PM
This looks very similar to what chiren is using.

http://www.flopturnriver.com/pokerstars-ahk-scripts.php

I would assume you jsut have to modify the script to "move" the table "when action is required" instead of on keystroke
11-14-2009 , 04:10 PM
Quote:
Originally Posted by EstrlM3

I would assume you jsut have to modify the script to "move" the table "when action is required" instead of on keystroke
ya but how you do that?
11-14-2009 , 04:22 PM
Quote:
Originally Posted by catuskid
ya but how you do that?
post in software forum and soemeone will write it for you.
11-14-2009 , 04:29 PM
Quote:
Originally Posted by Chiren
Quote:
Originally Posted by ChicagoJoey
why cant we have a race to 1 million hands chiren? Wouldnt that be more fun?

How do you think you will feel when the record you set is broken shortly after

why are you not taking bets on this? assuming your a lock to do it, would be free money, you no like free money?
Well i planned to do this to raise my chances drastically to achieve pokerstars online pro so i don't have to much time to do this as i think they will announce them them in January/december.

Also who knows maybe i can do a challenge next year where we do something like that, will depend how hard december will be for me.

I already stated the reason why i didn't wanna turn this into a prop bet, but out of curiosity what are the odds people would want to give me in case i'd reconsider it and for how much?
Quote:
Originally Posted by Hodge05
Quote:
Originally Posted by FishTheShark
Why not do this in January and have a 3 way challenge? :P

Hodge05 vs. ChicagoJoey vs. Chiren

Each wager 15K and winner takes all (first to 1 Million VPP or who ends up with most vpps at the end of January). Other 2p2'ers could put up side bets for their favourite to win ...

Would be interesting ... and also a huge motivation for all 3 to win as no one wants to fall behind the competion.

But this will prob not happen like that.
Going to PCA. But jeez. that is tempting
This + wan mirrion.
11-14-2009 , 04:30 PM
Use that script and change the modifiers to if fold "move to stack" if call or raise or bet "move to the side" then the side tables same "if fold move back to stack" if call raise etc "stay"
11-14-2009 , 05:18 PM
Quote:
Originally Posted by EstrlM3
This looks very similar to what chiren is using.

http://www.flopturnriver.com/pokerstars-ahk-scripts.php

I would assume you jsut have to modify the script to "move" the table "when action is required" instead of on keystroke
nice find sir
11-14-2009 , 05:24 PM
Quote:
Originally Posted by Pokerpingu
Hehe maybe a suggestion for FTP or PS theirselves
They could care less
11-14-2009 , 05:30 PM
Quote:
Originally Posted by EstrlM3
This looks very similar to what chiren is using.

http://www.flopturnriver.com/pokerstars-ahk-scripts.php

I would assume you jsut have to modify the script to "move" the table "when action is required" instead of on keystroke
Quote:
Originally Posted by eckokaka4
nice find sir
Tested to 12 Tables because thats all i play, works fine, we just need someone to rework it so you dont have to use spacebar..

any takers??

also im assuming you could change the keystroke to a keystroke you use for "call" and "raise/bet" then change the keystroke (move back to stack) with the same keystroke you use for "fold"
11-14-2009 , 05:34 PM
Quote:
Originally Posted by EstrlM3
Tested to 12 Tables because thats all i play, works fine, we just need someone to rework it so you dont have to use spacebar..

any takers??

also im assuming you could change the keystroke to a keystroke you use for "call" and "raise/bet" then change the keystroke (move back to stack) with the same keystroke you use for "fold"
Should post in the software section, prob find someone to hook it up.

Thanks for testing it, if we can get someone to do it, I'll be a very happy man.
11-14-2009 , 05:54 PM
mmmh, I just use a simple ahk script to move my desktop's windows (so it works with every windows opened so with poker tables too )

here it is :

SetTitleMatchMode, 2

F5::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 0
return

F6::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 375
return

F10::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 900
return

F7::
WinGetActiveTitle, Title1
WinMaximize, Title1
WinMove, %Title1%,, 750, 0

return

F8::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 750, 375

return


so when i press F5, the windows is moved top left corner
F6 bottom left, F7 top right and F8 bottom right

i mean you just have to change the two numbers for each hotkey with what you want ( just do several tests)

kinda simple and i used it all times when i multitable stt's on PS, and i stack my tables too. never had problems
11-14-2009 , 05:59 PM
it would be much better, if the tables would move automaticly to the free spaces if there is action required and then automaticly disappear/go back after the action
11-14-2009 , 06:03 PM
Quote:
Originally Posted by -ChoKo-
mmmh, I just use a simple ahk script to move my desktop's windows (so it works with every windows opened so with poker tables too )

here it is :

SetTitleMatchMode, 2

F5::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 0
return

F6::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 375
return

F10::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 0, 900
return

F7::
WinGetActiveTitle, Title1
WinMaximize, Title1
WinMove, %Title1%,, 750, 0

return

F8::
WinGetActiveTitle, Title1
WinMove, %Title1%,, 750, 375

return


so when i press F5, the windows is moved top left corner
F6 bottom left, F7 top right and F8 bottom right

i mean you just have to change the two numbers for each hotkey with what you want ( just do several tests)

kinda simple and i used it all times when i multitable stt's on PS, and i stack my tables too. never had problems
the problem i run into is changing the action based on what position the window is already in. I've never done any kind of programnming but i was able to read enough based on my html css knowledge to get a few modifiers but nothing worked out.

Quote:
Originally Posted by MakeItReal
it would be much better, if the tables would move automaticly to the free spaces if there is action required and then automaticly disappear/go back after the action
or based on action taken. im not sure how to do "automatic"

Posted in software forum here : http://forumserver.twoplustwo.com/45...trokes-633319/
11-14-2009 , 06:28 PM
I'm glad to see my setup is helping people so much.

I saw the script and there is a fundamental difference between teh script and my program.

My program automatically moves a table if action is required and automatically moves it back if you fold, unless u want to see the action even after u fold and u just click the fold button instead of using the hotkey.

My main issue when i developed the program and that will be the case with the script as well even if you get it to work is this:

If you use auto pop up when action is required with pokerstars software what it will do is not activate the table on the stack but the table you need to act on next. So basically if that table is not on the stack but next to it, it will not activate any stack table until u acted on that table making you sit out on all tables on the stack.

I just wanna make people aware of this mechanism so you keep it in mind while working on it, i tbh don't think its possible to do with a script, you'll need to have it programmed especially for ur desktop but i hope i'm wrong so everyone can benefit of this sick program
11-14-2009 , 06:38 PM
Quote:
Originally Posted by Chiren
I'm glad to see my setup is helping people so much.

I saw the script and there is a fundamental difference between teh script and my program.

My program automatically moves a table if action is required and automatically moves it back if you fold, unless u want to see the action even after u fold and u just click the fold button instead of using the hotkey.

My main issue when i developed the program and that will be the case with the script as well even if you get it to work is this:

If you use auto pop up when action is required with pokerstars software what it will do is not activate the table on the stack but the table you need to act on next. So basically if that table is not on the stack but next to it, it will not activate any stack table until u acted on that table making you sit out on all tables on the stack.

I just wanna make people aware of this mechanism so you keep it in mind while working on it, i tbh don't think its possible to do with a script, you'll need to have it programmed especially for ur desktop but i hope i'm wrong so everyone can benefit of this sick program
Thanks for the reply chiren. i was thinking about using poker stars "action required" and have a modifier override for hotkeys if the mouse is over a different table... but not exactly that wont work, too much mouse movement. any more hints?

Last edited by EstrlM3; 11-14-2009 at 06:44 PM.
11-14-2009 , 06:43 PM
Quote:
Originally Posted by Chiren
I'm glad to see my setup is helping people so much.

I saw the script and there is a fundamental difference between teh script and my program.

My program automatically moves a table if action is required and automatically moves it back if you fold, unless u want to see the action even after u fold and u just click the fold button instead of using the hotkey.

My main issue when i developed the program and that will be the case with the script as well even if you get it to work is this:

If you use auto pop up when action is required with pokerstars software what it will do is not activate the table on the stack but the table you need to act on next. So basically if that table is not on the stack but next to it, it will not activate any stack table until u acted on that table making you sit out on all tables on the stack.

I just wanna make people aware of this mechanism so you keep it in mind while working on it, i tbh don't think its possible to do with a script, you'll need to have it programmed especially for ur desktop but i hope i'm wrong so everyone can benefit of this sick program
Thanks for showing us, I like it alot.
11-14-2009 , 06:55 PM
stream link?
11-14-2009 , 07:03 PM
joey thinking he has any chance at winning a volume prop against chiren is funny.
11-14-2009 , 07:04 PM
Quote:
Originally Posted by EstrlM3
the problem i run into is changing the action based on what position the window is already in. I've never done any kind of programnming but i was able to read enough based on my html css knowledge to get a few modifiers but nothing worked out.
i mean whatever the position is .
if i want my active window to be in x position, i press the x hotkey, y position = y hotkey etc

i dont really understand whats the problem .

when i play its like that : all my tables are opened top left. if i have nothing interesting, i let them there and play. when i want to see something, i just press one of the hotkey for a position, the table goes there. when the hand or anything if finished, i press the initial top left hotkey and the window is moved back.
and if i have several interesting stuff, i just press a different hotkey ; that's it . the window can be anywhere on the desktop, pressing the x hotkey will always move the window to the x position

and chiren, i 'd find annoying to have tables always move out of the stack when action required ... i prefer do it myself if i want ( the only thing is i have to press a hotkey to move back the window at the initial position but it's not that hard)
11-14-2009 , 07:24 PM
Quote:
Originally Posted by -ChoKo-
i mean whatever the position is .
if i want my active window to be in x position, i press the x hotkey, y position = y hotkey etc

i dont really understand whats the problem .

when i play its like that : all my tables are opened top left. if i have nothing interesting, i let them there and play. when i want to see something, i just press one of the hotkey for a position, the table goes there. when the hand or anything if finished, i press the initial top left hotkey and the window is moved back.
and if i have several interesting stuff, i just press a different hotkey ; that's it . the window can be anywhere on the desktop, pressing the x hotkey will always move the window to the x position

and chiren, i 'd find annoying to have tables always move out of the stack when action required ... i prefer do it myself if i want ( the only thing is i have to press a hotkey to move back the window at the initial position but it's not that hard)
The issue i run into is i want my check/call , and bet to move the window off the stack, i want my fold to move the window onto the stack or i guess just stay?

but if a window is already off stack i want it to stay in its current position not move. unless i fold.

sounds very elementary but i dont know any scripting.
11-14-2009 , 07:31 PM
Quote:
Originally Posted by Chiren
I'm glad to see my setup is helping people so much.

I saw the script and there is a fundamental difference between teh script and my program.

My program automatically moves a table if action is required and automatically moves it back if you fold, unless u want to see the action even after u fold and u just click the fold button instead of using the hotkey.

My main issue when i developed the program and that will be the case with the script as well even if you get it to work is this:

If you use auto pop up when action is required with pokerstars software what it will do is not activate the table on the stack but the table you need to act on next. So basically if that table is not on the stack but next to it, it will not activate any stack table until u acted on that table making you sit out on all tables on the stack.

I just wanna make people aware of this mechanism so you keep it in mind while working on it, i tbh don't think its possible to do with a script, you'll need to have it programmed especially for ur desktop but i hope i'm wrong so everyone can benefit of this sick program
Thx chiren, but you still haven´t told us which program you use or in which way you get all these action-things to run.

It will absolutly be the best if you will make a little movie playing just 5 tables and show how it runs etc..
11-14-2009 , 07:36 PM
Quote:
Originally Posted by PumpingDonking
Will you plz make a video who tells all the facts to play the way you play, and move all the other things. I also thinks pokerstars don´t like all this trashtalk, so plz make a new movie only with FACTS how you do and explain. You will be the best man ever sir!

Or just describe here what you do.

Thx

Quote:
Originally Posted by PumpingDonking
Thx chiren, but you still haven´t told us which program you use or in which way you get all these action-things to run.

It will absolutly be the best if you will make a little movie playing just 5 tables and show how it runs etc..
nice second post
11-14-2009 , 07:38 PM
He actually doesn´t act on the first
11-14-2009 , 07:44 PM
Quote:
Originally Posted by EstrlM3
The issue i run into is i want my check/call , and bet to move the window off the stack, i want my fold to move the window onto the stack or i guess just stay?

but if a window is already off stack i want it to stay in its current position not move. unless i fold.

sounds very elementary but i dont know any scripting.
oh ok i see . then i guess it's clearly more difficult and i don't know how to do it.
but it sounds interesting even if i'm doing good with "my" method
11-14-2009 , 07:48 PM
Chiren, why don't you share or sell your program?

      
m