• 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

Alternate Damage Bonus Option?

2goth4U

Member
Could you add an option to the Pathfinder data to calculate the weapon damage bonus for Offhand and Twohand weapons based on the following formula instead of the default calculation?

OffHand Damage Bonus Formula
{
if OneHandDmgBonus < 1
then
DmgAdj = - Max(1, RoundDown(Abs(OneHandDmgBonus/2)))
else
DmgAdj = - Max(1, Round(OneHandDmgBonus/2))
endif

OffHandDmgBonus = OneHandDmgBonus + DmgAdj
}

TwoHand Damage Bonus Formula
{
if OneHandDmgBonus < 1
then
DmgAdj = Max(1, Round(Abs(OneHandDmgBonus/2)))
else
DmgAdj = Max(1, RoundDown(OneHandDmgBonus/2))
endif

TwoHandDmgBonus = OneHandDmgBonus + DmgAdj
}
 
Back
Top