


This unofficial TaleSpire mod posts rolls to a web server using JSON encoding.
This plugin, like all others, is free but if you want to donate, use: http://LordAshes.ca/TalespireDonate/Donate.php
1.2.0: Added selected mini and selected mini id into d20 post
1.1.0: Added option for full roll result posting
1.0.0: Initial release
Use R2ModMan or similar installer to install.
Configure the URL using R2ModMan Edit Config option for the plugin.
There are two mode: d20Only and not d20Only.
When a roll is made, if the die is a D20, the roll will be sent as a POST to the specified URL and the contents of the roll will be provided as the contents of the POST in JSON format. For example:
{
"player": "LordAshes",
"name": "initiative",
"formula": "1D20+5",
"die": "4",
"total": "9",
}
When a roll is made, regardless if it is a D20 roll or not, the full Talespire Roll Result object is sent to the URL via POST with the JSON serialized roll result as the content. Unlike the d20Only mode, this content supports multiple dice and even multiple roll totals. The content will look similar to:
{
"RollId":100001,
"GroupResults":
[
{
"Name": "Inspiration",
"Dice":
[
{
"Resource": "numbered1D20",
"Results": [11],
"Modifier": 3,
"DiceOperator":0
}
]
}
]
}
The RollId can be ignored, it is used by Talespire internally. The Name may be empty if the roll was made in Talespire without associating the roll with a name. DiceOperator 0 is plus. DiceOperator 1 is minus.
The plugin does not provide the web server portion. That is scope of others. However, below is a simple PHP script that captures the posted JSON content as a string:
<?PHP
$json = file_get_contents('php://input');
?>