Hi there, I am currently using the DH2 sheet for my current game. In the equipement section with ahve a button to roll for hitting and one for damages. I am trying to make an external macro which roll a button from the sheet. The macro behind this button is pretty complex: <button title="Agility"
name="sheet-AGI" type="roll"
class="sheet-clear sheet-full_width sheet-characteristics_button sheet-stats_grid_5 btn ui-draggable"
value="@{to-gm}&amp;{template:mythic}
{{character= @{character_name}}}
{{roll-name=Agility}}
{{dos=[[[[1+floor(abs([[
{{ {@{agiTotal}+@{fatigued}+@{inlinemod-toggle}},
{@{agiTotal}-@{limiter}}}kh1, {@{agiTotal}+@{limiter}}}kl1]]-[[1d100]])/10)]]+ceil(@{AGI_unnat}/2)]]}}
{{target= $[[0]]}}
{{roll= $[[1]]}}
{{dof= $[[2]]}}">
"Agi |"
<input name="attr_AGI_total"
value="@{agiTotal}+@{fatigued}"
class="sheet-input_background sheet-input_char_background"
disabled=""
data-formula="@{agiTotal}+@{fatigued}">
</button> I am trying to link this macro to the external macro bar but can't seem to get it right because most of the variables are not exported to the Attributes & ability of the sheet I can copy the macro for some part and use the @{selected|ability name} but i can't for all the formula. I was wondering if there is a way to link the button name to the external macro Thanks in advance