
Hi all, I have another problem, In my Character sheet, I want that when the player choose a talent/feat, with a specific bonus, it applies directly on their attribute, for example the feat "Jumper" will give a +2 in acrobatics and in Dance. I did not find how to do it ! Here is a part of my HTML <fieldset class="repeating_talents"> <select name="attr_bonus" class="bonus" style="width: 820px" > <option value="@{talent1}">Acrobatique -(Athlétique):... +2 en Acrobaties & Danse.</option> <option value="@{talent2}">Agressif:... +1 en Initiative. </option> <option value="@{talent3}">Amis des Animaux -(Empathique):... +2 en Équitation, +2 aux tests de Moral contre les Animaux.</option> </select> </fieldset> <input type="hidden" name="attr_talent1" value="2" /> <!--Acrobatique -(Athlétique):... +2 en Acrobaties & Danse.--> <input type="hidden" name="attr_talent2" value="1" /> <!--Agressif:... +1 en Initiative. --> <input type="hidden" name="attr_talent3" value="2" /> <!--Amis des Animaux -(Empathique):... +2 en Équitation, +2 aux tests de Moral contre les Animaux.--> <input type="number" name"attr_Acrobaties" value="@{othervalues}+@{talent1} /> I also tried to put @{repeating_talents_0_bonus}, it's taking the value, but if I delete the feat or choose another from the select field, it doesn't change anything, it'll all time be taken in the formula. So how to pick up the value of an option chosen in a repeated selection and only when it's chosen ? If you understand my poor english, that would be helpful ! Thank you !