Callback and Balance 2
Posted: Thu Apr 02, 2020 12:16 am
In the API Examples for the Callback file there is no instance of Balance2 in the example, but there is a separate Callback option in Poker Mavens for Balance2 in the Callback system.
Is it setup identical to Balance and would look like below or are some field names different?
thanks!
Is it setup identical to Balance and would look like below or are some field names different?
Code: Select all
case "Balance2":
fwrite($f,"Event = " . $event . "\n");
fwrite($f,"Player = " . $_POST["Player"] . "\n");
fwrite($f,"Change = " . $_POST["Change"] . "\n");
fwrite($f,"Balance = " . $_POST["Balance"] . "\n");
fwrite($f,"Source = " . $_POST["Source"] . "\n");
fwrite($f,"Time = " . $_POST["Time"] . "\n");
fwrite($f,"\n");
break;