
Something like:
Bob gets [[ floor(([[1d20 + @{selected|various attack bonuses or whatever}]] - @{target|AC})/5) ]] Momentum Points! He rolled $[[0]] to hit as well... well done Bob!
You can get fancier and have the results in a different order if you introduce a roll template:
Thanks for the reply (and so quick as well!). I'm just a little confused here, I guess. What is the $[[0]] mechanic doing, exactly? (And likewise for the $[[1]] later on in your example). Thanks.
Since your desired calculation is part of a wider calculation we are exploiting the Reusing Rolls trick to get the attack roll AND the number of Momentum generated. In the first example we have to do it in reverse as you can't perform math on the inline roll calls ($[[0]] etc) but can call the nested inline roll of the attack itself.
The second example exploits the behaviour of a roll template ignoring the actual roll since it is placed outside of the templates sections:
&{template:default} [[ roll calculation ]] {{ foo }} {{ bar }}
and by adding that second layer of inline nesting we are then able to call both the attack roll and the number of momentum in the desired order $[[0]] being the first inline roll made (from the deepest nesting upwards) and $[[1]] being the next inline roll.
Hopefully that helps explain how we are bending the calculation to our will :)
Awesome! I did not know about the ability to reference the results of rolls like that. That pretty much is exactly what I was hoping for, then. Thanks for the help. Much appreciated!
One thing to note, because it will eventually come up in something you will try to do: Sadly, we are unable to do any math operations on the re-used rolls ( so no $[[0]] + 5 or anything). They will only display as text.
What Ziechael had posted was looking perfect, until I ran into a negative result in the Momentum calculation portion of the equation (e.g. an attack roll of 8 vs AC of 14 = -2 Momentum, but I would want that to say 0 Momentum instead, since no Momentum was gained). I'm sure it's something simple to fix, but I still have to figure it out, I guess.