Hi, apparently this is not possible without using the API. I tried something like this for my own character sheet, but ultimately resigned and wrote an API script that checks rolls for their sum and compares this to a specific number. As an example (untested): on("ready", function() {
on("chat:message", function(msg) {
if(msg.type == "rollresult")
{
var rolldata = JSON.parse(msg.content);
var number = 18;
_.each(rolldata.rolls,function(r){
if('R' === r.type && 10 === r.sides)
{
_.each(r.results, function(roll){
if (roll.v < number)
{
// Success!
} else if (roll.v > number)
{
// Failure
}
});
}
});
}
});
}); Greetings.