Two Plus Two Older Archives

Two Plus Two Older Archives (http://archives2.twoplustwo.com/index.php)
-   Internet Gambling (http://archives2.twoplustwo.com/forumdisplay.php?f=26)
-   -   Removing Party's Blackjack image (http://archives2.twoplustwo.com/showthread.php?t=355585)

Toopskees 10-11-2005 07:23 PM

Removing Party\'s Blackjack image
 
The stupid Sidebet image on the left of the screen was messing up my PlayerView numbers for seat 8, but I was able to remove it (C:\Program Files\PartyPoker\Images\SideBetOpen). However, I was unable to identify the image file associated with the Blackjack logo on the top right side of the screen. Anyone know what the name of that file is so I can 86 it as well?

daveymck 10-11-2005 07:24 PM

Re: Removing Party\'s Blackjack image
 
Can you just delete the sidebar open file then?

Toopskees 10-11-2005 07:29 PM

Re: Removing Party\'s Blackjack image
 
Yes. Just locate the file, and either delete it or move it out of the PartyPoker\Images folder. The Sidebet won't appear thereafter.

Pokeraddict 10-11-2005 07:51 PM

Re: Removing Party\'s Blackjack image
 
There was a thread about how to get rid of all of this somewhere but I cant find it now. Maybe someone has it bookmarked and can give us the link. I would like it too.

Jim Easton 10-11-2005 07:51 PM

Re: Removing Party\'s Blackjack image
 
Someone posted all the files to remove, but I can't find the post. The image files are in alphabetical order, so the Blackjack one is at the beginning. There are several Side-bet images to remove. They can all be removed without any problem.

NoChance 10-11-2005 07:57 PM

Re: Removing Party\'s Blackjack image
 
There are six images that start with "SideBet" in the IMGAGES folder. Either rename them by putting an "x" in front so you don't lose them, or simply delete them. Your choice. You can do the same with the blackjack images. There are two of those.

tigerite 10-11-2005 08:00 PM

Re: Removing Party\'s Blackjack image
 
I'll post it one more time - or run this script with Autohotkey from www.autohotkey.com

#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
}

Toopskees 10-12-2005 12:26 AM

Re: Removing Party\'s Blackjack image
 
I just found the file. It's called "table bj button." Simply remove this file, and the Blackjack disappears from the tables. Very simple.

10-12-2005 12:44 AM

Re: Removing Party\'s Blackjack image
 
perfect, thanks!


All times are GMT -4. The time now is 12:40 AM.

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