Players win vs loss

For general discussion of the Poker Mavens software
Post Reply
mpga2021
Posts: 19
Joined: Sat Dec 05, 2020 9:07 pm

Players win vs loss

Post 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.
Kent Briggs
Site Admin
Posts: 5880
Joined: Wed Mar 19, 2008 8:47 pm

Re: Players win vs loss

Post 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
mpga2021
Posts: 19
Joined: Sat Dec 05, 2020 9:07 pm

Re: Players win vs loss

Post by mpga2021 »

Thanks as always Ken !!
MavensTools
Posts: 25
Joined: Mon Jul 20, 2020 7:22 pm

Re: Players win vs loss

Post 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
Daily results.png (244.37 KiB) Viewed 1521 times
Session history:
Sample session history.jpg
Sample session history.jpg (235.82 KiB) Viewed 1521 times
Ring game summary:
Ring game summary.png
Ring game summary.png (246.36 KiB) Viewed 1521 times
LB Finer
Mavens Tools — Enhance your Mavens experience with text alerts, hand viewer, game summaries, reports and more
mudbuddha
Posts: 14
Joined: Fri Apr 10, 2020 3:28 pm

Re: Players win vs loss

Post 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;
Post Reply