
hello forum im one of the authors of the Rogue Trader Improved sheet (source code: <a href="https://github.com/Roll20/roll20-character-sheets/tree/master/Rogue%20Trader%20Improved" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/tree/master/Rogue%20Trader%20Improved</a> ) I need help with an important flaw that i could not find a permanent solution for: *In the CORE tab of the sheet the player must fill the Characteristics of the character in order to use most of the macros of the sheet, the problem arises when these values are saved on the sheet as static numbers and dont update if the value is changed later, unless that value is deleted on the "attributes and abilities tab", the value of these fields is an auto-calc of several other inputs: Starting (value) + Adv. Check box 1,2,3,4. here is a snip: <button name="roll_WS" type="roll" style="width:10%;height:60px" value="&{template:custom} {{name=**@{character_name} Test Weapon Skill**}} {{result=[[(@{WeaponSkill}+?{Modifier|0}-1d100cf100cs1)/10]] }}"> <input disabled name="attr_WeaponSkill" type="number" style="font-size:38px;height:55px" value="[[(@{StartingWS}+@{AdvancedWS1}+@{AdvancedWS2}+@{AdvancedWS3}+@{AdvancedWS4})]]"> </input></button> the issue here is that in the above example the attr_WeaponSkill will be saved as a static number in the "attributes and abilities tab", and will not update, the work around solution i found is to simply Delete the attribute from that tab and let the auto-calc recalculate, however in some instances the sheet will save that updated value again and the problem repeats. is there a way to prevent the sheet from saving that static number in the "attributes and abilities tab" but still retain the auto-calc value for macros? i did some experiments with those values and apparently there is some sort of limit on how many values are saved on the "attributes and abilities tab", since that tab does not show all "attr" values of the sheet (like checkboxes, hidden values and other auto-calc fields further down the code) any insight on this issue will be greatly appreciated, thanks!