Open Side Menu Go to the Top
Register
StackAndTile StackAndTile

12-15-2009 , 06:18 AM
Quote:
Originally Posted by TristarPoker
what it does to me is put the tables in the slots 2-10... after i clicked the fold HK it shortly moves to slot 1 and than back, altough the table that requires action dont move to the front (testet it with and without the ps option). So far its not working for me.

it sounds like its detecting all of your tables as needing action. run setup again, make sure 1. table is the size you will be using to play with, 2. you are observing the pokerstars table, and not sitting down. then you should be good

tables requiring action should activate to front with the stars option. StackAndTile doesnt interfere. but they're not at the front of the stack for long (split second), because it moves them into the grid slot

Last edited by greg nice; 12-15-2009 at 06:31 AM.
StackAndTile Quote
12-15-2009 , 10:22 AM
Quote:
Originally Posted by greg nice
this happened to me a few times during testing on fulltilt. are you getting it on stars? the other possiblity is that you are using a funky table size and getting the relative coords of the fold button is broken
Yeah this is on stars. My window size is 800x580.
StackAndTile Quote
12-15-2009 , 10:34 AM
Quote:
Originally Posted by lennois
It doesn't go back to the stack at all unless you click fold. So yes, you can see mucked cards but you'll stay there until next hand. I think I may prefer it this way.

Yeah leaving tables is a pain in TOI since I don't want to have to look at the stack at all the way it is set up. If the table only moved on VPIP then it would be fine cos you are looking at the stack all the time anyway.
This is great because if I don't like a certain table I will just wait until it cycles back for a decision then leave it as I see fit before I hit the hotkey to send it back to the stack.

I'm not picking sides between TOI and Greg's program, but it seems like Greg's solution is the right choice for me.
StackAndTile Quote
12-15-2009 , 01:32 PM
is this free? is it like TOI ? could some one help me set it up ? i would do a donation greg if u help me
StackAndTile Quote
12-15-2009 , 07:19 PM
Quote:
Originally Posted by Dread Wings
Yeah this is on stars. My window size is 800x580.
i will add a few more button clicks next time to give it a better chance of hitting fold
StackAndTile Quote
12-15-2009 , 07:21 PM
Quote:
Originally Posted by mephisto
This is great because if I don't like a certain table I will just wait until it cycles back for a decision then leave it as I see fit before I hit the hotkey to send it back to the stack.
once a table moves into grid, it is possible to just leave it there indefinitely and play as if it were a normal tiled table. once its detected as needing action, it gets moved out, and stays there and doesnt get touched until you press the 'Fold and re-stack' hotkey. you could play 50 hands (as many really) with the table in grid, if you were to just keep clicking fold yourself without using the hotkey

Quote:
Originally Posted by mephisto

I'm not picking sides between TOI and Greg's program, but it seems like Greg's solution is the right choice for me.
i wish Thois well with TOI. i hope my code can help him to make his program better/faster/etc. unless my ideas are crap anyway heh

Last edited by greg nice; 12-15-2009 at 07:31 PM.
StackAndTile Quote
12-15-2009 , 07:35 PM
I get error at line 316.

Line Text: {
Error: The leftmost character above is illegal in an expression
The Program will Exit.

316: while ((stackslot < 1) OR (stackslot > totalslots)) {
StackAndTile Quote
12-15-2009 , 07:42 PM
that code works for me without problem. no one else has reported it. maybe you have an old version of AHK?

you can try putting the '{' on the next line all alone like so:


while ((stackslot < 1) OR (stackslot > totalslots))
{
StackAndTile Quote
12-15-2009 , 09:40 PM
I tried moving it to the next line before, but I updated AHK, and it seems to work now.

Thanks!
StackAndTile Quote
12-16-2009 , 01:24 AM
I am using FTP, Windows 7, and Table Ninja. Everything seems to work really well, got it all setup but cant seem to figure out how to get it to work with Table Ninja. I have right-click as fold on TN, and as my "Fold and Move to Stack" button on this script.

If I start TN first, then run the AHK, Right-click will move the tables to the stack but wont fold them(so they return back to the grid instantly.) If I start AHK first, then TN, the tables will fold as normal, as if the AHK isnt even running, so no tables moving.

It seems like the AHK moves the table before TN can register to fold it. Does this make sense? Is there something I am doing wrong?

Thanks in advance for your help,

Kevin
StackAndTile Quote
12-16-2009 , 01:30 AM
joker: as far as i understand it, you have to disable the fold-hotkey in tableninja. the script itself does the folding.
StackAndTile Quote
12-16-2009 , 01:36 AM
Quote:
Originally Posted by e306
joker: as far as i understand it, you have to disable the fold-hotkey in tableninja. the script itself does the folding.
Thats kinda what I got from one of Greg's first responds to the "Will it work with TN?" questions but it doesnt seem to do anything but move the table for me if I have it running as a stand-alone without TN. I dont know much about this kind of stuff so I might be totally wrong and screwing something up.
StackAndTile Quote
12-16-2009 , 02:43 AM
Quote:
Originally Posted by NeedAJoker
I am using FTP, Windows 7, and Table Ninja. Everything seems to work really well, got it all setup but cant seem to figure out how to get it to work with Table Ninja. I have right-click as fold on TN, and as my "Fold and Move to Stack" button on this script.
Quote:
Originally Posted by NeedAJoker
Thats kinda what I got from one of Greg's first responds to the "Will it work with TN?" questions but it doesnt seem to do anything but move the table for me if I have it running as a stand-alone without TN. I dont know much about this kind of stuff so I might be totally wrong and screwing something up.
yes, to test, first try running standalone, without TN, it should do all the folding itself.

disable your Fold hotkey in TN. in StackAndTile, the hotkey text field is AHK sensitive, i should note this somewhere. http://www.autohotkey.com/docs/KeyList.htm

so for your fold and re-stack hotkey, put in: RButton

try it and report back
StackAndTile Quote
12-16-2009 , 08:58 AM
Quote:
Originally Posted by Dread Wings
This Script would be perfect if I could set it to only move table when a hand goes to the flop. Is there an easy way to do this?
working on it, should be done soon

Quote:
Also sometimes when I press the fold hotkey, the table will go back to the stack but the hand will not be folded. I have the hotkey set up as a button on my Logitech mouse that uses SetPoint. I don't know if this has anything to do with it.
in addition to sending an extra click,i also found i had a debugging Sleep in between the PostMessages that i've removed that will help solve this
StackAndTile Quote
12-16-2009 , 03:28 PM
Quote:
Originally Posted by greg nice
yes, to test, first try running standalone, without TN, it should do all the folding itself.

disable your Fold hotkey in TN. in StackAndTile, the hotkey text field is AHK sensitive, i should note this somewhere. http://www.autohotkey.com/docs/KeyList.htm

so for your fold and re-stack hotkey, put in: RButton

try it and report back
So I reset it all up, never even opened TN in the process and set "RButton" as fold and restack HK but it just moves the table back to the stack(grid 9), and then it doesnt fold so right back to grid 1. I have made sure the size is the same as the PS table used for setup.

Does having a different table .img matter? Custom cards? Specific background? I use FTP's "Midnight."

I like messing around with this so let me know if there is any other info you need.

Kevin
StackAndTile Quote
12-16-2009 , 07:26 PM
what happens when you first click Start?
-do all the tables get stacked, and then immediately all start filling up the slots, even if they arent tables that require action?
-or do all tables stay in stack. when one requires action, it gets slotted, then you press Fold hotkey, it moves back to stack but doesnt fold, so it pops back out?

i see "midnight" is a background option when you use "Classic" table view.

i've tested on my computer which uses "Racetrack" table view and "blue carpet" as the background. could you try these settings and report back? run setup again, during Full Tilt setup, ensure that the action is on you and "Fold" button is visible when you press F11

i will have to do some tests on Classic layout

Last edited by greg nice; 12-16-2009 at 07:45 PM.
StackAndTile Quote
12-16-2009 , 08:29 PM
Quote:
Originally Posted by greg nice
what happens when you first click Start?
-do all the tables get stacked, and then immediately all start filling up the slots, even if they arent tables that require action?
-or do all tables stay in stack. when one requires action, it gets slotted, then you press Fold hotkey, it moves back to stack but doesnt fold, so it pops back out?

i see "midnight" is a background option when you use "Classic" table view.

i've tested on my computer which uses "Racetrack" table view and "blue carpet" as the background. could you try these settings and report back? run setup again, during Full Tilt setup, ensure that the action is on you and "Fold" button is visible when you press F11

i will have to do some tests on Classic layout
Yeah it does exactly "-or do all tables stay in stack. when one requires action, it gets slotted, then you press Fold hotkey, it moves back to stack but doesnt fold, so it pops back out?"

I am using classic so I will give racetrack a shot tonight and report back.
StackAndTile Quote
12-16-2009 , 11:36 PM
Yeah so none of that worked either. Changed to 'RaceTrack', re-ran setup again, didnt resize any tables or anything after it was setup or during the process. I tried changing my HK from RButton to Space, same result, table just moves, no folds. Not really sure, it just doesnt want to fold.
StackAndTile Quote
12-16-2009 , 11:40 PM
are you getting the flicker on the fulltilt tables?

does it fold EVER? is it occasionally that it misses the fold button, or always?
StackAndTile Quote
12-17-2009 , 12:15 AM
Nope, no flicker at all, and it isn't occasionally, it doesn't fold ever. Honestly it doesn't bog down my system, moves the tables crisp and perfectly, setup is cake, it just wont fold.
StackAndTile Quote
12-17-2009 , 12:19 AM
Could it have anything to do with my Windows theme setup ie, Windows 7, Aero... I think at this point im more concerned with helping u out than anything so if you dont wanna waste anymore time trying to fix my problem its no worries at all.
StackAndTile Quote
12-17-2009 , 12:42 AM
gregnice how about changing the way the table move to grids? How about moving the tables only when we get to the flop? Also, the tables that do not need action moves to empty grids. Is there anyway to fix this? After all we only want tables to move to a grid when we are invested in a hand?



I'm liking it though, just a little bit of tweaking and well be set!

ty
StackAndTile Quote
12-17-2009 , 01:19 AM
Quote:
Originally Posted by NeedAJoker
Could it have anything to do with my Windows theme setup ie, Windows 7, Aero... I think at this point im more concerned with helping u out than anything so if you dont wanna waste anymore time trying to fix my problem its no worries at all.
i appreciate the help. did you get my PM? i send you a fix to try
StackAndTile Quote
12-17-2009 , 01:21 AM
Quote:
Originally Posted by RakBakPro
gregnice how about changing the way the table move to grids? How about moving the tables only when we get to the flop?
coming

Quote:
Also, the tables that do not need action moves to empty grids. Is there anyway to fix this? After all we only want tables to move to a grid when we are invested in a hand?
when does this happen? on what site? if this bug occurs, you can always just press the hotkey and move it back to the stack
StackAndTile Quote
12-17-2009 , 04:44 AM
"move to grid on flop only" is a bigger job than i thought.

currently, with StackAndTile, you dont play at all in the stack. its just a placeholder. in fact, the reason why i added custom coords for the stack, is so you could place it partially off the screen, since its of no use. that way you save screen real estate that can be used for an extra slot.

with this, you would be playing all preflop in the stack. with one site, you run into the trouble of keeping the stack updated. if stars pops up a table in slot2 that is most urgent, no stack tables will pop to the top of the stack until you act on the table in slot2. you can potentially time out in the stack.

but when you throw two sites in the mix, you encounter yet another problem: you'll have both sites popping up in the stack. if youre playing both stars and fulltilt, in the stack stars table auto pops up, 27o, you are about to click Fold. but fulltilt has its own pop up feature, so a fulltilt table with AA becomes urgent and pops up on top of your stars table, causing you to potentially misclick fold.
StackAndTile Quote

      
m