DeltaMasterMind
Well-known member
An ability I am trying to rescript since I thought I had it right but is not as complete as I would have like so here is the deal this ability needs to have a bonus cap to allowable damage and must only allow for Light weapons, Bolas, Shurikens, and if selected the Exotic Weapon from the exotic weapon proficiency feat as the Style that can be chosen is for Exotic Weapon style.
Sadly this is not only benefiting the selected weapon types, but it also did it to a two handed spear that I tested and the bonus cap I placed is allowing a +4 bonus at 6 levels with a +1 wis stat and it only should allow that +1 and never let that bonus supersede the level value limit.Post-Attributes / 10000
~only run the rest for the first copy
doneif (tagis[Helper.FirstCopy] = 0)
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ Generate our damage limit
field[abValue2].value = field[xAllLev].value
field[abValue3].value = hero.child[aWIS].field[aModBonus].value
~ Generate our Bonus Limit
field[abValue].value = minimum(field[abValue3].value, field[abValue2].value)
~ Generate our summary
field[abSumm].text = "+" & field[abValue].value & " to hit, +" & field[abValue].value & " to damage." & hero.childfound[fcSAElves].field[abValue].value & " minutes to regain use of deadly focus."
if (field[abilActive].value <> 0) then
foreach pick in hero from BaseWep where "wClass.Light | IsWeapon.wBolas | IsWeapon.wShuriken"
hero.child[Damage].field[Bonus].value += field[abValue].value
hero.child[Attack].field[Bonus].value += field[abValue].value
nexteach
endif
Last edited: