View Single Post
2goth4U
Junior Member
 
Join Date: Mar 2012
Location: Vancouver BC
Posts: 6

Old March 1st, 2012, 03:16 PM
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
}
2goth4U is offline   #1 Reply With Quote