Hi
I'm trying to manually add a feat to Herolabs that increases the damage of Composite Bows by +2, but I'm not sure really how to reliably recognize them.
So far I went with this, and it seems to work well enough.
But is there a better way to do it?
I'm trying to manually add a feat to Herolabs that increases the damage of Composite Bows by +2, but I'm not sure really how to reliably recognize them.
So far I went with this, and it seems to work well enough.
Code:
foreach pick in hero from BaseWep where "IsWeapon.wCompLong"
eachpick.field[wDamBonus].value += 2
nexteach
foreach pick in hero from BaseWep where "IsWeapon.wCompShort"
eachpick.field[wDamBonus].value += 2
nexteach
But is there a better way to do it?