
OK... outside of creating an extra input number box that serves as a target number for a roll, does anyone have a suggestion (incl. a sheetworker) for a method to auto-insert a target number for a roll? Example... I know that I could create something like this to accomplish what I'm looking for: <div class="col-1-6 padr"> <input name="attr_rolltarget" class="ul" type="number" value="1"></div> ......... then add something like this to the button function: <div class="col-1-6 padr center help"> <button type="roll" style="font-weight: bold;" class="text-button" name="roll_check" value="&{template:RTGold} {{name=Some Check}} {{subtags=Random Info}} {{check=Result: [[ { d12 + @{some_mod} }cs>@{rolltarget} ]]}}"> Chk</button> </div> Does anyone have a sheetworker or other suggestion on how to do this without having to have the number input box (since this would only handle a portion of the system we use; see below)? The purpose of this system (if it helps) is that our game has an additional effects whenever a person rolls double (or higher) their target number. In other words... if they are rolling a d12+8 => 6 (tgt #), & they roll a 12 or greater (e.g. 2x the tgt number), their roll would receive a bonus effect. The effect is further amplified if their roll were to be an 18 or greater (e.g. 3x the tgt number).