Hi there people, I'm trying to influence one checkbox with another one. Let me explain: I've set up a macro which will automatically put wound level on a character. Since the custom ruleset I use do not refer to a value, I've created checkbox that indicates the ''wound level''. Some wound levels then have an impact on rolls, let's call it a ''roll modifier''. I've created the roll modifier this way: <div class="hurtlvl">
<input type="checkbox" name="attr_hurtlvl" value="0"><span>Aucune (+0)</span>
<input type="checkbox" name="attr_hurtlvl" value="-1"><span>Blessé (-1) // Assommé (-1)</span>
<input type="checkbox" name="attr_hurtlvl" value="-2"><span>Blessure grave (-2) // Très assommé (-2)</span>
</div> Then, in any skill check/attack/etc., I add a ''+ @{hurtlvl}'' to modify each roll (or not). So, I would like to link the checkbox ''wound level'' to the checkbox I use for ''roll modifier''. When attaining a certain threshold, the roll modifier would trigger. Is this making any sense? Guillaume