/R1D100+'Result'*0.5 is mathematically equivalent to /r (1d100)*1.5 as something + .5 of something is the same as something * 1.5 If you're looking to use a different value, you could use a query: /r 1d100 +(?{result?|0}*0.5) which would ask you to input a value every time you roll. If you have an attribute on a character sheet (whether using a character sheet template or not), you can reference that attribute: /r 1d100 +(@{selected|Int-value}*0.5) Assuming that the attribute you wish to access is Int-value and that you have a token representing (and linked to ) that character selected. If you don't wish or can not select the token, you can remove the selected| part but then the roll would need to be made from the Ability button on the character sheet or you would have to replace the selected with the character's name. More on rolling in the wiki: <a href="https://wiki.roll20.net/Dice_Reference" rel="nofollow">https://wiki.roll20.net/Dice_Reference</a>