
Hey folks, I'm completely clueless again... Below you see the HTML code I use to create a new line for each skill of that character. Unfortunately, this does not work as intended/expected. Problem 1: I try to link two values, so I can work out a sum that should calculate my dice pool. (Standard Shadowrun, 1 attribute + 1 skill = pool.) Can it be that my select-command does not deliver the value of the attribute? Problem 2: The attributes generated by the fieldset-command do not show up in the attribites list of the character. What am I doing wrong? Problem 3: I have the destinct feeling, that those roll buttons generated with the fieldset will not work. Am I right? Any kind of shove in the right direction would be awesome. <fieldset class="repeating_a-fertigkeiten"> <table width="100%"> <tr> <td width="50%"><input class="texts2" type="text" name="attr_skill_name"></td> <td width="10%" align="center"><input class="values2" type="number" name="attr_stufe" /></td> <td width="20%" align="center"><select class="choose" name="attr_linked-attrib" value=""> <option value=""></option> <option value="@{attr_str}">STR</option> <option value="@{attr_kon}">KON</option> <option value="@{attr_ges}">GES</option> <option value="@{attr_rea}">REA</option> <option value="@{attr_wil}">WIL</option> <option value="@{attr_log}">LOG</option> <option value="@{attr_int}">INT</option> <option value="@{attr_cha}">CHA</option> <option value="@{attr_mag}">MAG</option> </select></td> <td width="10%" align="center"><input class="values2" type="number" name="attr_pool" value=value="@{stufe}+@{linked-attrib})" disabled="true" /></td> <td width="10%" align="center"><button type='roll' value="/roll @{pool}D6" name="roll_check" /></td> </tr> </table> (The classes used in this code are all CSS classes to style the sheet! I don't think that those matter, right?)