Open Side Menu Go to the Top
Register
Software to hide bankroll (re-matching window) Software to hide bankroll (re-matching window)

01-07-2013 , 06:14 PM
Quote:
Originally Posted by SchweigenDerLamer
Looked a bit into AHK-Scripts. Seemed that the after the update Pokerstars windows are harder to find/match text w/ AHK. Some things should work. Easiest to fix is to just delete the 'Cancel' in 2 lines. Here the fixed script wich works for me:
thanks a lot, fantastic!
Software to hide bankroll (re-matching window) Quote
01-07-2013 , 06:17 PM
Quote:
Originally Posted by tobjoern
SchweigenDerLame:s script dosent work for me :/
I've installed the AHK thing and put the script in notepad saved with .ahk, am i doing something wrong maybe?
hi, launch the ahk.exe and the whatevernameyougavetothescript.ahk as well before using. maybe that is the problem, it works for me.
Software to hide bankroll (re-matching window) Quote
01-19-2013 , 03:13 PM
Quote:
Originally Posted by unborn
thanks a lot, fantastic!
sometimes it works sometimes not. strange...
Software to hide bankroll (re-matching window) Quote
01-19-2013 , 03:58 PM
for me it didnt worked also a long time until i realized that it doesnt work when u run it with the admin rights. (for example when sharky want stars running with admin rights)
Software to hide bankroll (re-matching window) Quote
01-19-2013 , 09:37 PM
Any update for Mac users?
Software to hide bankroll (re-matching window) Quote
02-24-2013 , 08:06 PM
Quote:
Originally Posted by ChicagoRy
One just came out for FTP, see how it works: http://www.husng.com/content/made-sc...balance-3-ways
Hi, this is down. Can it be fixed? Thanks.
Software to hide bankroll (re-matching window) Quote
02-24-2013 , 09:50 PM
Ok, I sent an email to husng.com and someone fixed it very quick, its up again, good job!
Software to hide bankroll (re-matching window) Quote
02-24-2013 , 09:54 PM
The link busted bc I changed the title to reflect the PS portion as well and it auto changed URL. Thanks for pointing it out. Here it is: http://www.husng.com/content/made-sc...cript-here-too
Software to hide bankroll (re-matching window) Quote
03-18-2013 , 09:07 AM
hi guys

I realized that this script is not working when u start stars software as an administrator.

The problem is, that when u wanna run sharky u need to run both as an administrator, because otherwise i would just start them normally.

Any idea how that can be solved?

Would be rlly thankfull!
Software to hide bankroll (re-matching window) Quote
03-19-2013 , 02:10 PM
Quote:
Originally Posted by JArul3
hi guys

I realized that this script is not working when u start stars software as an administrator.

The problem is, that when u wanna run sharky u need to run both as an administrator, because otherwise i would just start them normally.

Any idea how that can be solved?

Would be rlly thankfull!
find your autohotkey folder, then make "autohotkey" application run as admin
Software to hide bankroll (re-matching window) Quote
04-11-2013 , 10:09 AM
I've tried all versions in here but they all block about 2 lines above the balance. Any ideas?
Software to hide bankroll (re-matching window) Quote
04-11-2013 , 10:19 AM
Quote:
Originally Posted by Cog Dissonance
I've tried all versions in here but they all block about 2 lines above the balance. Any ideas?
Yup. I made a few changes to the original AHK script. The below should work. Just copy and paste the below to Notepad, save it and load it up as an AHK script.

Code:
#NoEnv
#Persistent
#SingleInstance force
SetBatchLines, -1

; visible area clipped rect
region := "0-0 343-0 343-475 0-475 0-0 203-191 300-191 300-203 203-203 203-191"
SetTimer, ClipAvailableBalance, 150
return

ClipAvailableBalance:
if (hwnd := WinExist("Tournament Rematch ahk_class #32770"))
WinSet, Region, %region%, ahk_id %hwnd%
return
Software to hide bankroll (re-matching window) Quote
04-11-2013 , 11:37 AM
No good. It messed up the wrong area, no visible rematch and also close table popup disappeared.
Software to hide bankroll (re-matching window) Quote
04-11-2013 , 11:42 AM
[x] overrolled
Software to hide bankroll (re-matching window) Quote
04-11-2013 , 02:49 PM
So we need the correct dimension of the rematch window. Then the correct area to block out.

Correct dimension of rematch window:
So right click AHK script>Window Spy. Click on the rematch window. Window Spy will tell you the exact dimension of the rematch window. It should be similar to: 343-0 343-475 0-475 from the script. Make the necessary changes to the dimension.


Block out correct area:
Then we want to block out the correct area in the rematch window. To do this we need 4 different points in the rematch window that will form a rectangle. The coordinates for this from the script I posted is:

203-191 300-191 300-203 203-203 203-191

So that's:

topleft topright bottomright bottomleft topleft

Now we know where to put the coordinates in the script.... Then simply just hover your mouse over 4 of your own chosen points in the rematch window>enter coordinates in the AHK script (right click, edit)>save>done!


Hope this helps
Software to hide bankroll (re-matching window) Quote
04-12-2013 , 02:46 AM
Thanks, I'll work on that now!
Software to hide bankroll (re-matching window) Quote
05-30-2013 , 04:49 PM
has anybody a working script? it has to hide the bankroll when registering aswell as on the rematch window... would be great! pm me pls!
Software to hide bankroll (re-matching window) Quote
05-31-2013 , 06:28 AM
Quote:
Originally Posted by phos77
[x] overrolled
fkn lol'd

totally computer illiterate tho where are we copy and pasting the script into?
Software to hide bankroll (re-matching window) Quote
05-31-2013 , 07:28 AM
u have to download autohotkey. u copy the scripts into a normal .txt file and change it into .ahk right after.
then u just doubleclick the .ahk file u just created and the script should work.

but there is no working script which blocks the bankroll at the time u register as well as on the rematch window... as far as i know...
Software to hide bankroll (re-matching window) Quote
05-31-2013 , 10:53 AM
Quote:
Originally Posted by KelvinKe
Yup. I made a few changes to the original AHK script. The below should work. Just copy and paste the below to Notepad, save it and load it up as an AHK script.

Code:
#NoEnv
#Persistent
#SingleInstance force
SetBatchLines, -1

; visible area clipped rect
region := "0-0 343-0 343-475 0-475 0-0 203-191 300-191 300-203 203-203 203-191"
SetTimer, ClipAvailableBalance, 150
return

ClipAvailableBalance:
if (hwnd := WinExist("Tournament Rematch ahk_class #32770"))
WinSet, Region, %region%, ahk_id %hwnd%
return
this works for my rematch window, but if i register, i still see my bankroll
Software to hide bankroll (re-matching window) Quote
05-31-2013 , 11:27 AM
#NoEnv
#Persistent
#SingleInstance force
SetBatchLines, -1

; visible area clipped rect
region := "0-0 343-0 343-475 0-475 0-0 17-190 98-190 98-205 17-205 17-190"
SetTimer, ClipAvailableBalance, 150
return

ClipAvailableBalance:
if (hwnd := WinExist("Tournament Registration ahk_class #32770"))
WinSet, Region, %region%, ahk_id %hwnd%
return


kind of worked it out myself. that script works for the regestration, the previous for the rematch window. however i have to use both scripts, dont know how to put them together. but at least it works.
Software to hide bankroll (re-matching window) Quote
06-01-2013 , 07:27 AM
Is this available for playmoney games? I want to try first on playmoney
Software to hide bankroll (re-matching window) Quote
06-01-2013 , 10:26 AM
Yes work's on playmoney tables

This script that work on my computer,just hidding cashier:

#NoEnv
#Persistent
#SingleInstance force

OnExit, Exit
cashierEnabled := true
SetTimer, DisableCashier, 10
return

DisableCashier:
if( WinExist("ahk_class PokerStarsTableFrameClass") )
{
WinClose, Cashier ahk_class #32770
if ( cashierEnabled )
{
Control, Disable,, PokerStarsButtonClass37, PokerStars Lobby
cashierEnabled := false
}
}
else if ( !cashierEnabled )
{
Control, Enable,, PokerStarsButtonClass37, PokerStars Lobby
cashierEnabled := true
}
return

Exit:
Control, Enable,, PokerStarsButtonClass37, PokerStars Lobby
ExitApp
return
Software to hide bankroll (re-matching window) Quote
07-31-2013 , 12:54 PM
Is there a script that hides bankroll when you manually reg for a hunsg?
I've seen people have a hide bankroll skript where the windows says "don't look here"
any idea where to get this from?
Software to hide bankroll (re-matching window) Quote
08-08-2013 , 01:16 PM
Quote:
Originally Posted by KnutXX
Is there a script that hides bankroll when you manually reg for a hunsg?
I've seen people have a hide bankroll skript where the windows says "don't look here"
any idea where to get this from?
interested in this too
Software to hide bankroll (re-matching window) Quote

      
m