Page 1 of 1
Players win vs loss
Posted: Sun Dec 13, 2020 12:48 pm
by mpga2021
Is there a way to see what someone has lost ?
I know you can goto balances under account and see... im trying to figure this out for accounting, if someone asks me how much am i down if its 50 bucks of 500.. i'd like to see if possible.
Re: Players win vs loss
Posted: Sun Dec 13, 2020 1:14 pm
by Kent Briggs
Every chip transaction is recorded in the daily event logs. You can use the Event Log Viewer to load these files and set a filter to isolate a specific player:
http://www.briggsoft.com/docs/pmavens/U ... .htm#eview
Re: Players win vs loss
Posted: Tue Dec 15, 2020 1:49 pm
by mpga2021
Thanks as always Ken !!
Re: Players win vs loss
Posted: Tue Dec 15, 2020 10:47 pm
by MavensTools
mpga -- my tools allow you to see each player's win/loss on a daily, weekly and monthly basis. You can also see a player's entire session history (W/L and details for every session) as well as results for all players in a ring session or tournament. Take a look at the reports below, and check out
https://MavensTools.com for more details.
LB (
[email protected])
Daily results:

- Daily results.png (244.37 KiB) Viewed 3253 times
Session history:

- Sample session history.jpg (235.82 KiB) Viewed 3253 times
Ring game summary:

- Ring game summary.png (246.36 KiB) Viewed 3253 times
Re: Players win vs loss
Posted: Thu Jan 07, 2021 7:57 am
by mudbuddha
I have pro so used PRAKE2 is not used, you can use custom too or erake2 or whatever. I added this to callback.php and turned on ringtableleave callback
case "RingGameLeave":
$playername = $_POST["Player"];
$ringnet = $_POST["Net"];
$params = array("Command" => "AccountsGet", "Player" => $playername);
$api = Poker_API($params);
$CurrentNet = $api -> PRake2;
$LevelAmt = $CurrentNet + $ringnet;
$params = array("Command" => "AccountsEdit", "Player" => $playername, "PRake2" => $LevelAmt);
$api = Poker_API($params);
$result = $api -> Result;
break;