PDA

View Full Version : Request: Ongame Player Points



langejan
04-25-2009, 06:00 AM
Is it possible to show this in HM?

Skaning
05-20-2009, 08:19 AM
Attach the line in the file to you CustomStats.txt file in the Reports folder.

This will give you the points based on "Put $ in pot" and for every $0.10 rake paid, you will get 0.10 points. Ie: $0.59 in rake will give you 0.50 points. Based on the latest information from Ongame.

/A

Skaning
05-20-2009, 09:58 AM
Double post

langejan
05-21-2009, 05:26 AM
Thanks. Ive tried it yesterday and it showed 305.80 earned PP.

I play on Whitebet and today they have updated my points balance and they gave me only 233.7 PP for yesterday?!

Skaning
05-21-2009, 08:32 AM
If you are playing micro or low stakes poker, and when most pots are raked <$0.5, it will differ alot. This is because the rakeamount is stored in the database rake/playerdealtcards. So if there are 5 players that where dealt cards, and the final rake is $0.18, the rakeamount stored is $0.18/5 rounded to $0.04 per player. This will give you the total rake as $0.04*5 = $0.20 and an Ongame Point of 0.2 instead of 0.1.

But I will try to find a solution to this somehow...

/A

langejan
05-21-2009, 09:01 AM
I am playing NL50.

squalzen
06-03-2009, 01:01 PM
...

Skaning
06-08-2009, 08:29 AM
Adding this line instead should fix the round of problem playing mirco and lowstakes.

<Stat GroupName="Default" ColumnName="OngamePoints" ValueExpressions="Sum (case when PH.didvpip = TRUE or PH.PositionType_ID < 2 then floor((round(PKH.RakeAmount, 0)/10))/10 else 0 end) as OngamePoints" Evaluate="OngamePoints" ColumnHeader="OngamePoints" ColumnFormat="0.00" ColumnWidth="*" Tooltip="Ongame Points" />

squalzen
06-08-2009, 08:35 AM
Hi

I don't see how it can work as the VIP points (miles) on ongame network are not calculated like this. At least on ONGAME/WINAMAX



The miles

In cash game, every players having participated in the pot win 1.67 points per raked $
The maximum rake per flop is 3$
All player win the same amount of miles even if they have only paid the BB and even if they have fold at the flop.

Example: Pot 40$ -> rake = 2$ -> So every players having participed in the pot will win 3,34 Miles (2$ * 1.67).


The rake:

In cash game, the rake is 5%. It can't be more than 3$ on tables with more than 5 players whatever is the amount of the pot. On tables with 2 players the maximum amout raked is 1$. On tables with 3, 4 ou 5 players the maximum amount raked is 2$ per pot.

In holdem manager, I don't know how the Rake column is calculated. Does it come from the imported hands or does it calculated ?

So to apply this to ongame networks room, we have to know the total raked amount per pot and multiply it per 1.67 (not our part but the total raked amount taken by the room)


See my thread about this here http://www.holdemmanager.net/forum/showthread.php?t=11586

The best values I can have is doing this


Stat GroupName="Default" ColumnName="OngameMiles" ValueExpressions="sum(case when PH.player_id = 17 and (PH.positiontype_id < 2 or PH.didvpip = true) and PH.maxstreetseen > 1 then PKH.potsize+PKH.rakeamount else 0 end) as totsizepotplayed" Evaluate="(totsizepotplayed*0.05*1.67)/100" ColumnHeader="OngameMiles" ColumnFormat="0.00" ColumnWidth="*" Tooltip="Ongame Miles" />

Pascal

Skaning
06-08-2009, 08:58 AM
The WINAMAX site calculates VIP points totally different from all the rest ongame sites, for example Whitebet (and all I have played on, except WINAMAX) do it this way:


Rake Point
<$0,10 0
$0,10-$0,19 0,1
$0,20-$0,29 0,2
$0,30-$0,39 0,3
$0,40-$0,49 0,4
$0,50-$0,59 0,5
$0,60-$0,69 0,6
$0,70-$0,79 0,7
$0,80-$0,89 0,8
$0,90-$0,99 0,9
$1,00-$1,09 1
$1,10-$1,19 1,1
$1,20-$1,29 1,2
$1,30-$1,39 1,3
$1,40-$1,49 1,4
$1,60-$1,69 1,6
$1,70-$1,79 1,7
$1,80-$1,89 1,8
$1,90-$1,99 1,9
$2,00-$2,09 2
$2,10-$2,19 2,1
$2,20-$2,29 2,2
$2,30-$2,39 2,3
$2,40-$2,49 2,4
$2,50-$2,59 2,5
$2,60-$2,69 2,6
$2,70-$2,79 2,7
$2,80-$2,89 2,8
$2,90-$2,99 2,9
$3 3

langejan
06-10-2009, 08:07 AM
Thanks for helping out guys.

Skaning, your stat shows 223 points in HM for my hands yesterday whereas I only got 194 points from Whitebet.

I played 2718 hands of NL50.

I guess its impossible to calculate exactly how much I make.

attiati
04-14-2010, 04:42 PM
Adding this line instead should fix the round of problem playing mirco and lowstakes.

<Stat GroupName="Default" ColumnName="OngamePoints" ValueExpressions="Sum (case when PH.didvpip = TRUE or PH.PositionType_ID < 2 then floor((round(PKH.RakeAmount, 0)/10))/10 else 0 end) as OngamePoints" Evaluate="OngamePoints" ColumnHeader="OngamePoints" ColumnFormat="0.00" ColumnWidth="*" Tooltip="Ongame Points" />

Thank you, it works fine sure on NL30SH.
Could you explain me how it works?

0,1$ rake= 0,1PP, that's alright.
My question is: If the rake was 1,5$ on a SH table with 5 players, than everybody get 1,5PP or just 0,3PP? (1,5 / 5)

Thank you!