Callback for Knockouts
Posted: Tue Oct 16, 2018 10:52 pm
I noticed today that there was an option to turn on callbacks for KO's in tournaments. I checked out the PHP examples, and this stood out to me:
case "TourneyKnockout":
fwrite($f,"Event = " . $event . "\n");
fwrite($f,"Name = " . $_POST["Name"] . "\n");
fwrite($f,"Table = " . $_POST["Table"] . "\n");
fwrite($f,"Player = " . $_POST["Player"] . "\n");
fwrite($f,"Bounty = " . $_POST["Bounty"] . "\n");
fwrite($f,"Hand = " . $_POST["Hand"] . "\n");
fwrite($f,"Time = " . $_POST["Time"] . "\n");
fwrite($f,"\n");
How does it know how much the KO is worth? I've never seen a setting for that so I do them manually after tournaments end. Sorry if I'm misinterpreting what that line means - thanks!
case "TourneyKnockout":
fwrite($f,"Event = " . $event . "\n");
fwrite($f,"Name = " . $_POST["Name"] . "\n");
fwrite($f,"Table = " . $_POST["Table"] . "\n");
fwrite($f,"Player = " . $_POST["Player"] . "\n");
fwrite($f,"Bounty = " . $_POST["Bounty"] . "\n");
fwrite($f,"Hand = " . $_POST["Hand"] . "\n");
fwrite($f,"Time = " . $_POST["Time"] . "\n");
fwrite($f,"\n");
How does it know how much the KO is worth? I've never seen a setting for that so I do them manually after tournaments end. Sorry if I'm misinterpreting what that line means - thanks!