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.
Players win vs loss
-
Kent Briggs
- Site Admin
- Posts: 6015
- Joined: Wed Mar 19, 2008 8:47 pm
Re: Players win vs loss
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
http://www.briggsoft.com/docs/pmavens/U ... .htm#eview
Re: Players win vs loss
Thanks as always Ken !!
-
MavensTools
- Posts: 32
- Joined: Mon Jul 20, 2020 7:22 pm
Re: Players win vs loss
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: Session history: Ring game summary:
LB ([email protected])
Daily results: Session history: Ring game summary:
LB Finer | Mavens Tools
Check out the new Mavens Tools iOS App and Android App! Tons of functions for admins and players.
Mavens Tools — Enhance your Mavens experience with alerts, hand viewer, game summaries, admin actions and reports, more
Check out the new Mavens Tools iOS App and Android App! Tons of functions for admins and players.
Mavens Tools — Enhance your Mavens experience with alerts, hand viewer, game summaries, admin actions and reports, more
Re: Players win vs loss
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;
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;