Here are segments of html code for a custom character sheet I am writing, but I am not the most experienced with coding in general: Normal <input type='radio' value='0' name='attr_Multiplier' checked='true'/> <button type='roll' value='/roll (@{Multiplier} + @{OneBlade})d10!sd>7' name='roll_OneBladeCheck'>One Blade</button> <input type='radio' value='1' name='attr_OneBlade' /><input type='radio' value='2' name='attr_OneBlade' /><input type='radio' value='3' name='attr_OneBlade' /><input type='radio' value='4' name='attr_OneBlade' /><input type='radio' value='5' name='attr_OneBlade' /><input type='radio' value='6' name='attr_OneBlade' /><input type='radio' value='7' name='attr_OneBlade' /><input type='radio' value='8' name='attr_OneBlade' /><input type='radio' value='9' name='attr_OneBlade' /><input type='radio' value='10' name='attr_OneBlade' /> <br> Now I want the roll to show in a template similar to the default: &{template:Check} {{name=SkillCheck}} {{Success= *NOT SURE HOW TO SHOW RESULTING SUCCESS FROM ROLL}} {{Severity=*NOT SURE HOW / WHERE TO INSERT INFO ABOUT SEVERITY FOR A ROLL}} {{Total=[[Success + Severity]]}} If anybody can offer some help it would be greatly appreciated!