View Single Post
  #213  
Old 08-25-2007, 09:25 PM
fred4761 fred4761 is offline
Member
 
Join Date: Apr 2007
Location: Bendigo, Australia
Posts: 43
Default Re: Table Highlighter (New AHK Script)

Thanks HalvSame for the soundcard info.

[ QUOTE ]
[ QUOTE ]
[ QUOTE ]
I got it sorta working by replacing all sections of the script that had "ATL:00424070" with "ATL:0041F5F8". Just use find and replace.



[/ QUOTE ]

Thanks, that fixed my problem for interpoker

[/ QUOTE ]

not working since last upgrade (pro view table which I'm not using btw) Anyone know a fix???

[/ QUOTE ]

To fix it just replace "ATL:00424070" with "ATL:0041F0A0" using find and replace as before. They seem to be changing this everytime they update the program.

Also if you want to get it working for the pre turn buttons I have rewritten the button positions and colors for interpoker. I don't know if it will work on other skins.

Find the IsTableWaitingExCryto(id) section and update it as follows.


------------------------------------------------------------
IsTableWaitingExCrypto(id) {
CoordMode, Pixel, Screen
WinGetPos, x, y,,, ahk_id %id%

dx := 4
dy := 4

;x2 := x+439
;y2 := y+590
;PixelGetColor, c, x2, y2
;s = x=%x2% y=%y2% c=%c%
;Debug(s)




If ( GetPixelCount(x+429, y+531, x+429+dx, y+531+dy, 0x221D1F) >= 1) ;--- check/fold checkbox is visible
{
If ( GetPixelCount(x+429, y+534, x+429+dx, y+534+dy, 0xECD6D8) >= 1) ;--- fold checkbox is checked
return 0
If ( GetPixelCount(x+555, y+498, x+555+dx, y+498+dy, 0xA3A1A1) >= 1) ;--- call/check checkbox is checked
return 0
If ( GetPixelCount(x+429, y+500, x+429+dx, y+500+dy, 0xE7DEDB) >= 1) ;--- check/fold checkbox is checked
return 0
return 1
}
If ( GetPixelCount(x+430, y+500, x+430+dx, y+500+dy, 0x1F1F1F) >= 1) ;--- fold checkbox is visible
{
If ( GetPixelCount(x+429, y+534, x+429+dx, y+534+dy, 0xECD6D8) >= 1) ;--- fold checkbox is checked
return 0
If ( GetPixelCount(x+555, y+498, x+555+dx, y+498+dy, 0xA3A1A1) >= 1) ;--- call/check checkbox is checked
return 0
If ( GetPixelCount(x+429, y+500, x+429+dx, y+500+dy, 0xE7DEDB) >= 1) ;--- check/fold checkbox is checked
return 0
return 1
}
}

------------------------------------------------------
I didn't bother to update the call any button cause I don't every use it.

To update things yourself you just need to use the AHK windows spy, just right click on a active AHK scrit in the system tray.

With the windows spy you can easily find the info to update the script yourself by clicking on the poker table.
Reply With Quote