Open Side Menu Go to the Top
Register
Quick Questions & Answers Thread Quick Questions & Answers Thread

07-30-2015 , 03:38 AM
Quote:
Originally Posted by marek_heinz
Related, is there any software that tracks winnings in mixed games? Just something that keeps track of amount of hands and winnings, figure thats so easy there has to be?
http://****************/projects/fpdb/

Edit: Not sure why sourceforge is censored...
Quick Questions & Answers Thread Quote
07-30-2015 , 04:12 AM
Quote:
Originally Posted by Cangurino
Edit: Not sure why sourceforge is censored...
Here is the reason
Quick Questions & Answers Thread Quote
08-14-2015 , 06:48 PM
Can somebody help me modify this script to work for multiple instances?
Now it puts a border on tables with buyin >10$ (hyper satellites). It was made for those who stack tables. I tile so i'd like to have it on all tables that fit this criteria.
Code:
#SingleInstance, Force
Settitlematchmode, 2
SetWinDelay,-1
SetBatchLines, -1

; Border of the "Highlighter"
border_color := "ff0000"
border_size := 10
trans := 255

GroupAdd, tables, Table ahk_class PokerStarsTableFrameClass
settimer,Highlighter,25
return

HighLighter:
HighLighter()
return

HighLighter()
{
global OldX,OldY,OldW,OldH
global last_table_id
global border_color
global border_size
global trans
 winget,id,id,Ahk_group tables
 wingetpos,x,y,w,h,ahk_id%id%
 wingettitle,title,ahk_id%id%
 if instr(title,"Sat:")>0
 stringmid,buyin,title,instr(title,"$","",instr(title,"Sat:"))+1,instr(title,A_space,"",instr(title,"$","",instr(title,"Sat:")))-instr(title,"$","",instr(title,"Sat:"))-1
 else
 stringmid,buyin,title,instr(title,"$")+1,instr(title,A_space,"",instr(title,"$"))-instr(title,"$")-1
 if (buyin>=10) && ((id != last_table_id) || ((OldX <> X || OldY <> Y || OldW <> W || OldH <> H)))    
 {
  OldX := ActiveX
  OldY := ActiveY
  OldW := ActiveW
  OldH := ActiveH
  last_table_id := id  
   guinum := 2
   Gui, %guinum%: +Alwaysontop +Lastfound +Owner
   Gui, %guinum%: Color, %border_color%
   WinSet, Transparent, %trans%
   Gui, %guinum%: -Caption
   x1:=x-border_size
   y1:=y-border_size
   y2 := y + h 
   x2 := x + w
   w+=2*border_size
   h+=border_size

   Gui, %guinum%: Show, w%w% h%border_size% x%x1% y%y1% NoActivate    
   guinum++
   Gui, %guinum%: +Alwaysontop +Lastfound +Owner
   Gui, %guinum%: Color, %border_color%
   WinSet, Transparent, %trans%
   Gui, %guinum%: -Caption
   Gui, %guinum%: Show, w%border_size% h%h% x%x1% y%y% NoActivate    
   guinum++
   Gui, %guinum%: +Alwaysontop +Lastfound +Owner
   Gui, %guinum%: Color, %border_color%
   WinSet, Transparent, %trans%
   Gui, %guinum%: -Caption
   Gui, %guinum%: Show, w%w% h%border_size% x%x1% y%y2% NoActivate    
   guinum++
   Gui, %guinum%: +Alwaysontop +Lastfound +Owner
   Gui, %guinum%: Color, %border_color%
   WinSet, Transparent, %trans%
   Gui, %guinum%: -Caption
   Gui, %guinum%: Show, w%border_size% h%h% x%x2% y%y% NoActivate     
}
else
{
   Gui, 2: Cancel
   Gui, 3: Cancel
   Gui, 4: Cancel
   Gui, 5: Cancel
   last_table_id=
}
}
return
Quick Questions &amp; Answers Thread Quote
08-25-2015 , 07:45 PM
is there a quick way i can increase the border thickness for the highlight target table option in stars?
(im fairly good at making modifications to files)

or do i have to purchase some custom software?
Quick Questions &amp; Answers Thread Quote
08-25-2015 , 08:03 PM
the script in avramia's post 1 back - unfortunately considerable work is required to make it show more than one instance.

however, it's very simple to modify it to show a fat border on the active Stars table
Quick Questions &amp; Answers Thread Quote
08-25-2015 , 08:17 PM
thx that should do as i play cash and only need it for the active table
Quick Questions &amp; Answers Thread Quote
08-25-2015 , 08:37 PM
here: (added option to make it work on mouseover too for those using that method)

Code:
#SingleInstance, Force
Settitlematchmode, 2
SetWinDelay,-1
SetBatchLines, -1

; Border of the "Highlighter"
border_color := "ff0000"
border_size := 10
trans := 255
use_mouseover := false

GroupAdd, tables, Table ahk_class PokerStarsTableFrameClass
settimer,Highlighter,25
return

HighLighter:
HighLighter()
return

HighLighter()
{
  global OldX,OldY,OldW,OldH, use_mouseover
  global last_table_id
  global border_color
  global border_size
  global trans
  if (use_mouseover)
  {
    MouseGetPos, , , id
  }
  else
  {
    winget, id, , A
  }
  wingetpos,x,y,w,h,ahk_id%id%
  WinGetClass, winclass, ahk_id%id%
  
  if (winclass == "PokerStarsTableFrameClass") && ((id != last_table_id) || ((OldX <> X || OldY <> Y || OldW <> W || OldH <> H)))    
  {
    OldX := ActiveX
    OldY := ActiveY
    OldW := ActiveW
    OldH := ActiveH
    last_table_id := id  
    guinum := 2
    Gui, %guinum%: +Alwaysontop +Lastfound +Owner
    Gui, %guinum%: Color, %border_color%
    WinSet, Transparent, %trans%
    Gui, %guinum%: -Caption
    x1:=x-border_size
    y1:=y-border_size
    y2 := y + h 
    x2 := x + w
    w+=2*border_size
    h+=border_size

    Gui, %guinum%: Show, w%w% h%border_size% x%x1% y%y1% NoActivate    
    guinum++
    Gui, %guinum%: +Alwaysontop +Lastfound +Owner
    Gui, %guinum%: Color, %border_color%
    WinSet, Transparent, %trans%
    Gui, %guinum%: -Caption
    Gui, %guinum%: Show, w%border_size% h%h% x%x1% y%y% NoActivate    
    guinum++
    Gui, %guinum%: +Alwaysontop +Lastfound +Owner
    Gui, %guinum%: Color, %border_color%
    WinSet, Transparent, %trans%
    Gui, %guinum%: -Caption
    Gui, %guinum%: Show, w%w% h%border_size% x%x1% y%y2% NoActivate    
    guinum++
    Gui, %guinum%: +Alwaysontop +Lastfound +Owner
    Gui, %guinum%: Color, %border_color%
    WinSet, Transparent, %trans%
    Gui, %guinum%: -Caption
    Gui, %guinum%: Show, w%border_size% h%h% x%x2% y%y% NoActivate     
  }
  else
  {
     Gui, 2: Cancel
     Gui, 3: Cancel
     Gui, 4: Cancel
     Gui, 5: Cancel
     last_table_id=
  }
}
return
Quick Questions &amp; Answers Thread Quote
08-25-2015 , 08:49 PM
works perfect, thx again
Quick Questions &amp; Answers Thread Quote
08-29-2015 , 10:48 PM
i noticed in the isildur withcolor joey stream that the time out bar runs down in blocks, is that a custom time out bar or something?
Quick Questions &amp; Answers Thread Quote
09-27-2015 , 10:37 PM
Is there a "bring-in" auto hotkey option in the poker stars client hotkey options?

Sent from my SGH-I337M using 2+2 Forums
Quick Questions &amp; Answers Thread Quote
10-13-2015 , 05:06 PM
Somebody mentioned a thread that discussed how "rake"/"rake on winnings" stats are miscalculated in HEM when importing hands from Bovada. Anyone got a link to that discussion?
Quick Questions &amp; Answers Thread Quote
10-23-2015 , 05:56 AM
Hello there,

Anyone knows where I could find a "FREE" Internet Poker Transcript Reading Software just so I can look at my hands after a game. Hand history is automatically stored into my computer but you need a program to view it properly.

I know Poker Tracker 4 and Holdem manager can do the work but they are not free and I don't want to buy it for now.

Thanks!
Quick Questions &amp; Answers Thread Quote
10-23-2015 , 06:38 AM
free poker database is the only free desktop software that will do what you want but it is complicated to get going for most. There are some web based solutions that might do it what you want but I am not sure how much they will allow you to do without a subscription as I haven't reviewed them lately. The only one that comes to mind this early in the morning as my caffeine hasn't kicked in yet is PokeIT but I am not sure if it is still live. Check/search the free software sub-forum for others.
Quick Questions &amp; Answers Thread Quote
12-07-2015 , 08:08 PM
hello, I am searchin for a script that works with boss media. anyone selling or know about one?
Quick Questions &amp; Answers Thread Quote
12-15-2015 , 03:06 PM
Have a quick question: after quite some time I got some money on stars again, wanting to play Zoom. So I still had a Pokertracker 3 Code I purchased years ago - so I downloaded it and HUD just does not appear when playing zoom.

I followed these instructions: https://www.pokertracker.com/guides/...zoom-poker-hud

and googled a bit, but it somehow it wont work? sometimes the HUD appears at the beginning for a short while at one table but it does not show the stats of the players who are currently at that table...

the import works fine though I think

any help? does anybody still use PT3? does it work for them?

thank you!
Quick Questions &amp; Answers Thread Quote
12-15-2015 , 03:36 PM
PT3 hasn't been updated in years so it likely doesn't work any longer. You will need to try something else that is still being update.
Quick Questions &amp; Answers Thread Quote
12-15-2015 , 04:07 PM
ok thank you! is there any free alternative that supports ZOOM?
Quick Questions &amp; Answers Thread Quote
12-15-2015 , 04:12 PM
Jivaro free version might? HM Cloud Beta does. And I assume that FPDB does also but can't be sure as I don't follow their development.
Quick Questions &amp; Answers Thread Quote
12-15-2015 , 08:27 PM
thank you using jivaro as a basic HUD now and PT3 for the graph/database - should be enough for micro stakes
Quick Questions &amp; Answers Thread Quote
12-19-2015 , 06:30 PM
Hi. Sorry if wrong thread. Is anyone aware of a software that can pop up tables whenever action is required? Except for Table ninja that is way to buggy for me to use.

Thanks alot!!
Quick Questions &amp; Answers Thread Quote
12-20-2015 , 08:25 AM
Stack & Tile is worth a look
Quick Questions &amp; Answers Thread Quote
12-30-2015 , 06:32 PM
Hi I'm using Hold Em manager 2 on 888 and whenever I stand up from a table and sit back on it on another chair the HUD stats stay in the same position they were when I left the table. Is there a way to fix this?
Quick Questions &amp; Answers Thread Quote
12-30-2015 , 06:50 PM
Quote:
Originally Posted by EverCube
Hi I'm using Hold Em manager 2 on 888 and whenever I stand up from a table and sit back on it on another chair the HUD stats stay in the same position they were when I left the table. Is there a way to fix this?
Try disabling (set it to 'None') the Site Setup > Pacific > Preferred Seating options and any of the preferred seating options in the 888 client. That is the only way it might work. Or you can use the <> arrows in the main Table HUD where the gear icon, table averages and last x winners are to rotate all the HUDs to line up after you change seats.
Quick Questions &amp; Answers Thread Quote
01-23-2016 , 02:33 PM
I want to record some videos of myself playing online poker.

What's the recommended software for recording these videos on Windows?

Thanks.
Quick Questions &amp; Answers Thread Quote
01-23-2016 , 03:24 PM
There are tons of threads over the years asking the same if you do a software forum search for 'record'.
Quick Questions &amp; Answers Thread Quote

      
m