Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > Tournament Poker > One-table Tournaments
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-10-2005, 11:32 AM
Hickboy Hickboy is offline
Member
 
Join Date: Oct 2004
Posts: 82
Default **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
Reply With Quote
  #2  
Old 10-10-2005, 11:37 AM
junkmail3 junkmail3 is offline
Senior Member
 
Join Date: Jun 2004
Location: Philadelphia
Posts: 249
Default 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.)
Reply With Quote
  #3  
Old 10-10-2005, 11:41 AM
Hickboy Hickboy is offline
Member
 
Join Date: Oct 2004
Posts: 82
Default Re: How to delete the BJ and Sidebet buttons in PartyPoker

hehe. I'll stick with the SNGs and MTTs, thanks.
Reply With Quote
  #4  
Old 10-10-2005, 11:46 AM
ZeroPointMachine ZeroPointMachine is offline
Senior Member
 
Join Date: Jul 2005
Location: Las Vegas
Posts: 136
Default 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.
Reply With Quote
  #5  
Old 10-10-2005, 03:00 PM
ilya ilya is offline
Senior Member
 
Join Date: May 2004
Location: Party Poker
Posts: 460
Default 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?
Reply With Quote
  #6  
Old 10-10-2005, 03:26 PM
Guest
 
Posts: n/a
Default 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.
Reply With Quote
  #7  
Old 10-10-2005, 04:48 PM
Hickboy Hickboy is offline
Member
 
Join Date: Oct 2004
Posts: 82
Default 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...
Reply With Quote
  #8  
Old 10-10-2005, 06:25 PM
Gator519 Gator519 is offline
Junior Member
 
Join Date: Aug 2004
Posts: 9
Default 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.
Reply With Quote
  #9  
Old 10-10-2005, 06:45 PM
DDH DDH is offline
Junior Member
 
Join Date: Sep 2004
Posts: 18
Default Re: **How to remove the BlackJack and Sidebet Icons in PartyPoker**

Cool, I was wondering how make those things stop cluttering up my table.
Reply With Quote
  #10  
Old 10-10-2005, 07:18 PM
tigerite tigerite is offline
Senior Member
 
Join Date: Sep 2004
Posts: 360
Default 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
}
Reply With Quote
Reply


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

Forum Jump


All times are GMT -4. The time now is 11:19 PM.


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