PDA

View Full Version : total profit..



xandur
12-14-2008, 02:34 AM
i have rakeback tab already but i would like a tab that added rakeback + $ for complete laziness to show total profit.

morny
12-15-2008, 04:02 PM
Ill look into this for you

abstractls
01-05-2009, 04:59 AM
Any news on this I could use it too

dch
01-14-2009, 10:37 PM
I just put this together quick-and-dirty-style, so i apologize for any stylistic deficiencies. It works though.



Paste the following code in your CustomStats.txt as described in the HM FAQ. It displays your amount won including rakeback.

<Stat GroupName="Default" ColumnName="Amount Won incl Rakeback" ValueExpressions="Sum(ph.NetAmountWon)/100.0 as AmountWon; Sum(PH.RakeAmount)/100*0.27 as RakeBackAmount" Evaluate="AmountWon+RakeBackAmount" ColumnHeader="$ + RB" ColumnFormat="$0.00" ColumnWidth="*" Tooltip="'Amount Won incl Rakeback based on 27%" />

(This is based on Full Tilt rakeback, simply change the 0.27 to fit your needs, e.g. 0.98 for you guys with 98% rakeback)




Here's another one displaying your BB/100 including rakeback:

<Stat GroupName="Default" ColumnName="BB/100 incl Rakeback" ValueExpressions="Sum(ph.NetAmountWon/1.0/GT.BigBlind) as TotalBBs; Sum(PH.RakeAmount*0.27/1.0/GT.BigBlind) as RakeBackInBBs" Evaluate="(TotalBBs+RakeBackInBBs)*50.0/TotalHands" ColumnHeader="BB/100\n + RB" ColumnFormat="0.00" ColumnWidth="*" Tooltip="BB/100 incl RakeBack based on 27%" />

(This again is based on Full Tilt rakeback, simply change the 0.27 to fit your needs, e.g. 0.99 for you guys with 99% rakeback)




And yet another one displaying the total rake you pay in BB/100 (Warning: this can be quite disturbing at the micros)

<Stat GroupName="Default" ColumnName="Rake in BB/100" ValueExpressions="Sum(PH.RakeAmount/1.0/GT.BigBlind) as RakeInBBs" Evaluate="RakeInBBs*50.0/TotalHands" ColumnHeader="Rake in\nBB/100" ColumnFormat="0.00" ColumnWidth="*" Tooltip="Rake in BB/100" />

(This does not subtract rakeback, it uses the total rake amount paid)



Cheers, dch.

KrOliV
01-18-2009, 01:15 AM
thx a lot i needed this stuff :)

I suggest you to name BB/100 including rakeback "RBincBB/100" instead of "BB/100\n + RB" in the formula so it can fit on one line or just remove the \n ^^