Two Plus Two Publishing LLC Two Plus Two Publishing LLC
 

Go Back   Two Plus Two Poker Forums > Internet Poker > Software

Notices

Software Discussions about gambling-related and poker software.

Reply
 
Thread Tools Display Modes
Old 02-03-2012, 10:39 AM   #1
old hand
 
blaze2007's Avatar
 
Join Date: May 2007
Location: The Netherlands
Posts: 1,464
Searching PS hide cashier software

I remember a long time ago someone made a software that wouldn't let you see your cashier while registering. It would black out.

I cannot find it via the search dunction so If anyone know where that thread is please enlighten me. Or if there are other ways how do this please share.

Thanks!
blaze2007 is offline   Reply With Quote
Old 02-03-2012, 10:45 AM   #2
old hand
 
blaze2007's Avatar
 
Join Date: May 2007
Location: The Netherlands
Posts: 1,464
Re: Searching PS hide cashier software

Is it tiltbreaker?
blaze2007 is offline   Reply With Quote
Old 02-03-2012, 11:30 AM   #3
grinder
 
Join Date: Sep 2008
Location: Never got a license ldo
Posts: 498
Re: Searching PS hide cashier software

Here's a quick script that disables the cashier button when you have tables open.
Code:
#NoEnv
#Persistent
#SingleInstance force

OnExit, Exit
cashierEnabled := true
SetTimer, DisableCashier, 1000
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

Last edited by Weegs; 02-03-2012 at 11:36 AM. Reason: bug
Weegs is offline   Reply With Quote
Old 02-03-2012, 11:45 AM   #4
old hand
 
blaze2007's Avatar
 
Join Date: May 2007
Location: The Netherlands
Posts: 1,464
Re: Searching PS hide cashier software

But this is for disabling the cashier button right? I am actually looking for a blocker when I register for an MTT or SNG. Cashgames are not much of a problem since I have auto-buyin and auto reload on.
blaze2007 is offline   Reply With Quote
Old 02-03-2012, 12:03 PM   #5
adept
 
suic!deking's Avatar
 
Join Date: Dec 2007
Posts: 793
Re: Searching PS hide cashier software

Quote:
Originally Posted by blaze2007 View Post
But this is for disabling the cashier button right? I am actually looking for a blocker when I register for an MTT or SNG. Cashgames are not much of a problem since I have auto-buyin and auto reload on.
Hi Blaze,

Tilt Breaker blocks the cashier balance from opening. We do not yet block the balance in the actual tournament registration yet though. Although this will most likely be implemented once we add tournament support within the next ~4 weeks.

S!K
suic!deking is offline   Reply With Quote
Old 02-03-2012, 12:17 PM   #6
grinder
 
Join Date: Sep 2008
Location: Never got a license ldo
Posts: 498
Re: Searching PS hide cashier software

Quote:
Originally Posted by blaze2007 View Post
But this is for disabling the cashier button right? I am actually looking for a blocker when I register for an MTT or SNG. Cashgames are not much of a problem since I have auto-buyin and auto reload on.
Haha, sorry I misunderstood. Shows how much I play donkaments
You want to block the "Available balance:" part from the popup right? Seems tricky
Weegs is offline   Reply With Quote
Old 02-03-2012, 01:24 PM   #7
grinder
 
Join Date: Sep 2008
Location: Never got a license ldo
Posts: 498
Re: Searching PS hide cashier software

This one is pretty lol but it works.
Code:
#NoEnv
#Persistent
#SingleInstance force
SetBatchLines, -1

;             visible area                                clipped rect
region := "0-0 326-0 326-341 0-341 0-0   34-191 180-191 180-203 34-203 34-191"
SetTimer, ClipAvailableBalance, 150
return

ClipAvailableBalance:
	if (hwnd := WinExist("Tournament Registration ahk_class #32770"))
		WinSet, Region, %region%, ahk_id %hwnd%
return
edit.
make sure your text size is set to medium

Last edited by Weegs; 02-03-2012 at 01:39 PM.
Weegs is offline   Reply With Quote
Old 02-03-2012, 05:12 PM   #8
old hand
 
blaze2007's Avatar
 
Join Date: May 2007
Location: The Netherlands
Posts: 1,464
Re: Searching PS hide cashier software

Got to try that one than. But I am a rookie with scripts. In which file should I enter this?
blaze2007 is offline   Reply With Quote
Old 02-03-2012, 09:00 PM   #9
grinder
 
Join Date: Sep 2008
Location: Never got a license ldo
Posts: 498
Re: Searching PS hide cashier software

1. download and install AutoHotkey
2. copy paste the code into notepad
3. save it somewhere as .ahk
4. run the script (XP: double click the file. Vista/Win7: right click the file -> run as administrator)
Weegs is offline   Reply With Quote
Old 02-11-2012, 03:12 AM   #10
banned
 
Join Date: Dec 2011
Posts: 15
Re: Searching PS hide cashier software

very cool script)))
ty
Spartak! is offline   Reply With Quote
Old 02-11-2012, 03:13 AM   #11
banned
 
Join Date: Dec 2011
Posts: 15
Re: Searching PS hide cashier software

Weegs, can you write it for ipoker?
Spartak! is offline   Reply With Quote
Old 02-12-2012, 06:24 PM   #12
grinder
 
Join Date: Sep 2008
Location: Never got a license ldo
Posts: 498
Re: Searching PS hide cashier software

I don't have any IPoker client installed on my computer but you should be able to edit the script by yourself. Just edit those colored parts to match the IPoker client.

Use AutoIt3 Window Spy (Run -> C:\Program Files\AutoHotkey\AU3_Spy.exe) to get the correct coordinates and window classes etc.

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

;             visible area                                clipped rect
region := "0-0 326-0 326-341 0-341 0-0   34-191 180-191 180-203 34-203 34-191"
SetTimer, ClipAvailableBalance, 150
return

ClipAvailableBalance:
	if (hwnd := WinExist("Tournament Registration ahk_class #32770"))
		WinSet, Region, %region%, ahk_id %hwnd%
return
Weegs is offline   Reply With Quote
Old 04-21-2012, 08:17 PM   #13
journeyman
 
Join Date: Dec 2009
Posts: 295
Re: Searching PS hide cashier software

The balance show after the match is over (rematch window) since i play husng. Can anyone modify it? I am not good with computer.

Last edited by badbeats247; 04-21-2012 at 08:23 PM.
badbeats247 is offline   Reply With Quote

Reply
      

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -4. The time now is 06:21 PM.


Powered by vBulletin®
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 ©2011, Crawlability, Inc.
Copyright © 2008-2010, Two Plus Two Interactive