Al H. said: Quick question, how would you add a modifier to the above. The most straightfoward way is to add the Roll Query to every dropdown field: &{template:default} {{name=BARKA makes a ?{Ability| STR, STR Check &#125;&#125; {{A roll of @{STR} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{STR} | DEX, DEX Check &#125;&#125; {{A roll of @{DEX} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{DEX} | CON, CON Check &#125;&#125; {{A roll of @{CON} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{CON} | INT, INT Check &#125;&#125; {{A roll of @{INT} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{INT} | WIS, WIS Check &#125;&#125; {{A roll of @{WIS} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{WIS} | CHA, CHA Check &#125;&#125; {{A roll of @{CHA} will be successful&#125;&#125; [[ { 1d20 + ?{Modifiers&#124;0&#125; &#125;<@{CHA} } Alternatively, { 1d20 + ?{Q} }<[[@{A}]] can be rewritten as 1d20<[[@{A} - ?{Q}]], which can save the pain of using more HTML entities: &{template:default} {{name=BARKA makes a ?{Ability| STR, STR Check &#125;&#125; {{A roll of @{STR} will be successful&#125;&#125; [[ 1d20<[[@{STR} | DEX, DEX Check &#125;&#125; {{A roll of @{DEX} will be successful&#125;&#125; [[ 1d20<[[@{DEX} | CON, CON Check &#125;&#125; {{A roll of @{CON} will be successful&#125;&#125; [[ 1d20<[[@{CON} | INT, INT Check &#125;&#125; {{A roll of @{INT} will be successful&#125;&#125; [[ 1d20<[[@{INT} | WIS, WIS Check &#125;&#125; {{A roll of @{WIS} will be successful&#125;&#125; [[ 1d20<[[@{WIS} | CHA, CHA Check &#125;&#125; {{A roll of @{CHA} will be successful&#125;&#125; [[ 1d20<[[@{CHA} } - ?{Modifiers|0}]] ]] And, in case you're interested, a trick that I did not mention earlier can be used to further minimize the amount of HTML entities used: &{template:default} {{name=BARKA makes a ?{Ability| STR, STR Check &#125;&#125; ] @{STR} | DEX, DEX Check &#125;&#125; ] @{DEX} | CON, CON Check &#125;&#125; ] @{CON} | INT, INT Check &#125;&#125; ] @{INT} | WIS, WIS Check &#125;&#125; ] @{WIS} | CHA, CHA Check &#125;&#125; ] @{CHA} } [[ { 1d20 + ?{Modifiers|0} }<[[ 0d0 + [ ?{Ability} ]] ]]