Page 1 of 1

Rake Back Callback Option!

Posted: Sat Aug 16, 2014 6:17 am
by spoker
Hi dear kent
i see your callback events in your App , they are so good for more handling ...
for Ex : Hands Event We can know and handle about hand played ...
but if you Add 1 more Event callback for Rakeback is so good
please add 1 event for this who players are in hands and how much rake collected in that hands
with that we can set automatic rakeback to players
so so thx
regards

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 1:37 am
by spoker
dear kent
do you ok it ?

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 9:07 am
by Kent Briggs
The server doesn't currently separate rake by player and doing so would probably require a change in the hand history format, which isn't likely to happen until a major version release. But you could still write your own code to pull that info out from each hand as the Rake Stats utility does now.

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 9:12 am
by spoker
but how can i do it ?
i do hands played but ho can i give members that sends rake to system , on flop , turn and river ?
because in text file (hand history) in last action (river) we can just get members are in river , so what about who was in Flop or turn ?!

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 9:29 am
by Kent Briggs
The way the Rake Stats utility does it is by scanning each line in the hand history and adds up the chips contributed to the pot by each player. And then reads the Rake line at the end. That info is then saved in a local master-detail database.

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 10:06 am
by spoker
Dear Kent ,
i use Rake Stats App , its good but that cant use as Automatic ,
i want to do RAKEBACK after every hand played ,
RakeStats is Good but have not Automatically EXPORT data ,
how can i use for Automatic system ?!

Re: Rake Back Callback Option!

Posted: Sun Aug 17, 2014 10:14 am
by Kent Briggs
spoker wrote:RakeStats is Good but have not Automatically EXPORT data ,
how can i use for Automatic system ?!
You would need to replicate what it does with your own code.