Two Plus Two Older Archives

Two Plus Two Older Archives (http://archives2.twoplustwo.com/index.php)
-   One-table Tournaments (http://archives2.twoplustwo.com/forumdisplay.php?f=34)
-   -   **How to remove the BlackJack and Sidebet Icons in PartyPoker** (http://archives2.twoplustwo.com/showthread.php?t=354426)

Hickboy 10-10-2005 11:32 AM

**How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Hey all,

I posted this in the MTT forum as well. If should be posted in another forum, let me know.

If you're like me and can't stand the new Blackjack and Sidebet Icons, then you're in luck! You can remove them by deleting a few files.

Goto C:\Program Files\PartyPoker\Images

Delete the Following Files:
lobby_bj_button.jpg
sidebetbg.jpg
sidebetclose.bmp
sidebetclosebet.bmp
sidebetopen.bmp
sidebetopenbet.bmp
sidebetupdateprocess.jpg
table_bj_button.jpg

In case you want to remove Blackjack all together for the hell of it, delete C:\Program Files\PartyPoker\casino

If you still want access to Blackjack from the main lobby, don't delete the "lobby_bj_button.jpg" file. Of course, backing up these files isn't a bad idea, but it's simple to reinstall PartyPoker in case anything goes wrong.

Hope this helps.

Hickboy

junkmail3 10-10-2005 11:37 AM

Re: How to delete the BJ and Sidebet buttons in PartyPoker
 
How do you make any money? [img]/images/graemlins/wink.gif[/img]

(Thanks for the tip.)

Hickboy 10-10-2005 11:41 AM

Re: How to delete the BJ and Sidebet buttons in PartyPoker
 
hehe. I'll stick with the SNGs and MTTs, thanks.

ZeroPointMachine 10-10-2005 11:46 AM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Thanks for the tip.

First thing on my to do list when I get home.

ilya 10-10-2005 03:00 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Thanks man....this won't piss Party off to the point where they'll block my account, will it?

10-10-2005 03:26 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Will deleting the images completely remove the casino functions or just make it so I don't notice them? I just don't want to click on the wrong part of the screen and accidentally make a sidebet or something.

Hickboy 10-10-2005 04:48 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
well, it won't remove the the code in the PartyPoker program per se, but you just cannot access the BlackJack and Sidebet features from any of the windows.

Someone correct me if I'm wrong though...

Gator519 10-10-2005 06:25 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Is there a way to delete table lists as well? Like delete every limit but the one i play? [img]/images/graemlins/smile.gif[/img] that way i'm not loading 30/60 every 30 seconds to donk off more cash.

DDH 10-10-2005 06:45 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
Cool, I was wondering how make those things stop cluttering up my table.

tigerite 10-10-2005 07:18 PM

Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**
 
And I posted this there too, but hey, this is a script so you don't have to remove the images, therefore any updates won't re-add them etc.

#SingleInstance force
#Persistent

SetTimer,REMOVEBJ_SIDEBET,1000
Return

REMOVEBJ_SIDEBET:
{
lobby_list = % GetLobbies()

Loop, Parse, lobby_list, `,
{
lobby_id = %A_LoopField%
GetTables(lobby_id)
}
return
}

GetLobbies()
{
lobby_list =

; refresh the list of windows if necessary
WinGet, id, list, ahk_class #32770
Loop, %id%
{
StringTrimRight, this_id, id%a_index%, 0
WinGetTitle, title, ahk_id %this_id%
WinGetClass, class, ahk_id %this_id%
WinGet, process, ProcessName, ahk_id %this_id%

if title =
continue

if process not contains PartyPoker.exe,
continue

if title not contains Welcome to the,
continue

if lobby_list <>
lobby_list = %lobby_list%,

lobby_list = %lobby_list%%this_id%
}

return, %lobby_list%
}

GetTables(lobby_id)
{
if lobby_id <> -1
{
WinGet, process_id, PID, ahk_id %lobby_id%

; refresh the list of windows if necessary
WinGet, id, list, ahk_class #32770 ahk_pid %process_id%
Loop, %id%
{
StringTrimRight, this_id, id%a_index%, 0
WinGetTitle, title, ahk_id %this_id%

ControlGetText, static_text, Static2, ahk_id %this_id%

if static_text = Flop All 1 Color Pays 8 for 1
{
Control, Hide, , AfxWnd42s2, ahk_id %this_id%
WinHide, ahk_id %this_id%
continue
}

if title not contains Table,
continue

if title not contains Good Luck,
continue

Control, Hide, , AfxWnd42s33, ahk_id %this_id%
}
}

return
}


All times are GMT -4. The time now is 03:29 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.