PetarM wrote:but I would like to add hero position (SB, BTN or CO), number of players (2, 3 or 4), big blind size (50 or 100) and tournament round (round 1 or round 2)
I don't follow what you mean by 'Hero' position. Do you just mean the position of the player from the perspective of the active player for that statistic whether that is Hero or Villain? If so you can just specify that in a HUD statistic via the 'Item Properties' tab at the top right of the HUD Profile Editor window. Select the stat you wish to configure and scroll down to where it says 'Position'. If you want information for all positions in a popup then you can
create your own positional popup but if you want to specify a players position in the new custom columns then you would use:
- Code: Select all
tourney_hand_player_statistics.position
PetarM wrote:number of players (2, 3 or 4)
- Code: Select all
tourney_hand_summary.cnt_players
PetarM wrote:big blind size
- Code: Select all
tourney_blinds.amt_bb
PetarM wrote:tournament round (round 1 or round 2)
The tournament round isn't something that is stored in the database.
If you need further information on what's available we have not
published the schema like we did for PokerTracker 3 however the meaning of database fields haven't changed in any significant way. Also forum member 'Bininu' made their own schema document for PokerTracker 4 available in
this thread.