I am trying to script the above feat. What I have doesn't throw any errors at me but it also does not work. It should replace the str mod with the dex mod for damage on the chosen weapon.
post attributes/10000
any insights would be appreciated.
post attributes/10000
Code:
field[abValue].value += maximum(#attrmod[aDEX] - #attrmod[aSTR], 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.setfocus
focus.field[wDamBonus].value += field[abValue].value
endif
any insights would be appreciated.