Good day/evening Easy but hard to solve question: i have a weapon (called weapon1) that do some damages; part of these damages are due by another weapon (called weapon2). i just want to keep the damage done by weapon2 the same in every part of the weapon1 calculator 1d8 +
@{weapon1damagestat}[Weapon Dmg Ability] +
?{Use @{weapon2name}? (1=yes)|0}*@{weapon2damage}[Weapon Enh] +
?{Use @{weapon2name}? (1=yes)|0}*@{weapon2damage}[Weapon Spec] weapon2 macro for damage is quite simple: 1d6 My problem is that i want the result of 1d6 to be the same both the times i call it in weapon1damage macro, but actually, written like this, the result of 1d6 changes everytime. Is there a way to keep it the same both times without API? Thanks in advance