
I try to link an input (hit points and nonlethal damage ) in the sheet to the token, but I got a strange behavior with a standard input no problem : <input name="attr_hit_points" type="number" value="" label="" /> <input name="attr_hit_points_max" type="number" value="" label="" /> but I had some difficulties with an input using calculated value, I tried this first : <input name="attr_hit_points" type="number" value="@{var1}+@{var2}" disabled="disabled" label="" /> <input name="attr_hit_points_max" type="number" value="@{var3}+@{var4}" disabled="disabled" label="" /> but with no succes at a point I have tried something like : <input name="attr_hit_points" type="number" value="@{hit_points_base}" label="" /> <input name="attr_hit_points_max" type="number" value="@{hit_points_max_base}" label="" /> <input name="attr_hit_points_base" type="hidden" value="@{var1}+@{var2}" disabled="disabled" label="" /> <input name="attr_hit_points_max_base" type="hidden" value="@{var2}+@{var3}" disabled="disabled" label="" /> And now I got one token linked correctlty and the others don't ( in a same game ) I retried the previous point with no succes ; I am not able to repeat the manipulation :( for the records, the name contains some underscore but without I have the same issue some one got a similar situation ?