• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Add Strength to Damage from Daggars

I have a power that allows the user to add a flat bonus to damage with a melee finesse weapon equal to their Strength score, in addition to the bonus from Dex. I've figured out how to add a static/flat modifier, but not how to do so with the character's actual strength.

Here's what I have so far:

HTML:
hero.child[Damage].field[dmmBonus].value += 2

Phase: Post-Attributes
Timing: 9000
Index: 1

Any help with it would be appreciated.
 
Last edited:
It's gonna get finicky if your STR is higher than your DEX, since a finesse weapon will automatically use the higher of the two. But if you're limiting it to personal use on a character with a higher DEX, this should do it. Throw it into a .user file and add it as an adjustment:

Code:
  <thing id="pSTRtoFin" name="Add STR to DEX Finesse Weapon Damage" compset="InPlay">
    <tag group="OthAdjCat" tag="Equipment"/>
    <tag group="Helper" tag="NoIncr"/>
    <eval phase="Final" priority="10000"><![CDATA[doneif (field[pIsOn].value = 0)

foreach pick in hero from BaseWep where "wProperty.Finesse"
     eachpick.field[wDamAttr].value += hero.childfound[aSTR].field[aModBonus].value
     nexteach]]></eval>
    </thing>
 
Last edited:
Back
Top