
Greetings all, Forbidden Lands uses a modified MYZ rules system, including an Artifact/Resource die similar to SW dice, i.e. d6/d8/d10/d12, with varying successes.I want do add this as a popup to the die roll as a question to select which die type, and include maths for sheet to calculate # of successes. Here is the MYZadvanced die code: <button type="roll" name='roll_fight' class="sheet-right-roll"
value='&{template:default} {{name=Custom Roll}} {{ Base Dice=
[[[[@{advroll_base_success}+0]]d1cs1cf2>0+
[[@{advroll_base_fail}+0]]d1cs2cf1>6+
[[@{advroll_base_start}-@{advroll_base_success}-@{advroll_base_fail}+0]]d6>6]]}}
{{ Skill Dice= [[[[@{advroll_skill_success}+0]]d1cs1cf2>0+
[[@{advroll_skill_fail}+0]]d1cs2cf1>6+
[[@{advroll_skill_start}-@{advroll_skill_success}-@{advroll_skill_fail}+0]]d6>6]]}}
{{ Gear Dice= [[[[@{advroll_gear_success}+0]]d1cs1cf2>0+
[[@{advroll_gear_fail}+0]]d1cs2cf1>6+
[[@{advroll_gear_start}-@{advroll_gear_success}-@{advroll_gear_fail}+0]]d6>6]]}}' ></button> 1) Can I use the code below from a SW sheet and incorporate it into the button roll for the popup: <div class="sheet-dtypedropdown" style="vertical-align: top;"> <div class="sheet-dietype"> <input type="radio" name="attr_agility" value="6" title="@{agility}" style="width:10px;"/> <span>d6</span> <input type="radio" name="attr_agility" value="8" title="@{agility}" style="width:10px;"/> <span>d8</span> <input type="radio" name="attr_agility" value="10" title="@{agility}" style="width:10px;"/> <span>d10</span> <input type="radio" name="attr_agility" value="12" title="@{agility}" style="width:10px;"/> <span>d12</span> <div class="sheet-d4" style="width: 35px; height: 30px; margin-top: -1px; line-height: 20px;">d</div> <div class="sheet-d6" style="width: 35px; height: 30px; margin-top: -2px; line-height: 29px;">f</div> <div class="sheet-d8" style="width: 35px; height: 30px; margin-top: -2px; line-height: 31px;">h</div> <div class="sheet-d10" style="width: 35px; height: 30px; margin-top: -2px; line-height: 25px;">k</div> <div class="sheet-d12" style="width: 35px; height: 30px; margin-top: -2px; line-height: 30px;">l</div> </div> Or would it need to look something like this: [[{?{Artifact|0}dx}>6]] to work with the button? How can I combine the two? 2) Forbidden Lands system is a die pool system of 6=success. However on larger die, how can I continue roll to say
">6=1 success, >8=2 successes, >10=3 successes, >12=4
successes"