Open Side Menu Go to the Top

01-13-2010 , 12:43 PM
Hey. I found that you pretty easily can find the active windows coordinated with windows spy and if you have that then it seems kinda easy to fix existing scripts like pokerpad if you search thru the script.

I found this in the pokerpad for Pokerstars;

PokerStars_FoldBoxX := 412/792
PokerStars_CallBoxX := 539/792
PokerStars_RaiseBoxX := 646/792
PokerStars_BoxTop := 473/546
PokerStars_BoxBottom := 495/546
PokerStars_BoxWidth := 100/792
PokerStars_BoxHeight := 10/546

Then I tried to see what coordinates Fold/Call/Raise is in and change it.

So these are the coordinates for me;
Fold; 437, 498
Call; 555, 500
Raise; 672, 500

Also my own pokerstars size; 742x533


Anyways, I changed it to this but it didnt work
PokerStars_FoldBoxX := 437/498
PokerStars_CallBoxX := 555/500
PokerStars_RaiseBoxX := 672/500
PokerStars_BoxTop := 473/546
PokerStars_BoxBottom := 495/546
PokerStars_BoxWidth := 100/792
PokerStars_BoxHeight := 10/546

So I guess im doing something wrong with the Box top/bottom/width. Input? Please!
AHK edit scripts and coordinates - Help! Quote
AHK edit scripts and coordinates - Help!
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
AHK edit scripts and coordinates - Help!
01-13-2010 , 07:43 PM
The values after a slash are given as the window resolution. For example:

PokerStars_FoldBoxX := 412/792

-> means, the x coordinate is at point 412 of 792 total. 792 is the width of the window.

=>

Fold; 437, 498
Also my own pokerstars size; 742x533


this means you have to combine those 4 values like:

FoldX = 437/742
FoldY = 498/533

HTH

/ I got no further knowledge on this, maybe you should read about coord mode (-> relative, I guess) in the ahk guide.



EDIT: Since it is a ratio relative to the window size, I just suppose the original code to find your PS buttons no matter what size your tables are. I suppose the script to detect the true window size and divide the width by 792 and then multiply it with 412 (for FoldBoxX), so it should always click on the correct position. Else I wouldn't see a sense in using this coord mode.

Last edited by Baobhan-Sith; 01-13-2010 at 07:58 PM.
AHK edit scripts and coordinates - Help! Quote
10-30-2013 , 09:32 AM
Hello everybody,
i'm trying to fix a bossmedia helper for the new bossmedia.it platform and i suppose that now, with new tables and configuration, all the cooardinates in .ahk are unpacked. For example


FoldX := 0.70147
FoldY := 0.95110
CallX := 0.71245
CallY := 0.88509
BetX := 0.87179
BetY := 0.88998
SitoutX :=0.69667
SitoutY := 0.02889
BlindsX :=0.68667
BlindsY := 0.05556
Rebuy1X := 0.05667
Rebuy1Y := 0.80889
Rebuy21X :=0.33333
Rebuy21Y := 0.51333
Rebuy22X := 0.33667
Rebuy22Y := 0.55111
Rebuy3X :=0.46667
Rebuy3Y := 0.66000
Rebuy4X := 0.67188
Rebuy4Y := 0.65885
BoxX := 0.63667
BoxY := 0.53111

I would try to change those parametres and see that is enough so that the helper could run good. I need a way to find new coordinates.
Could someone help me?
Could someone try to fix complitlely the bossmedia.it helper or say me who can do that?

Thanks a lot!
AHK edit scripts and coordinates - Help! Quote
10-31-2013 , 03:14 AM
looks like those are just percentages, so just get the x/y coordinate you are looking for and divide by the width/height of the table size
AHK edit scripts and coordinates - Help! Quote
10-31-2013 , 09:17 AM
Quote:
Originally Posted by greg nice
looks like those are just percentages, so just get the x/y coordinate you are looking for and divide by the width/height of the table size
Now i found the correct percentages but i have a cople of troubles to understand the .ahk and c++. Could someone work with that configuration file? My intent is to fix just the autoTB and autoRB...
AHK edit scripts and coordinates - Help! Quote
AHK edit scripts and coordinates - Help!
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
AHK edit scripts and coordinates - Help!

      
m