ok I have a form that toggles on and off and the form grants 1/4 char level to attack bonus and damage with natural weapons. This particular form has a bite and 2 claws. Now the claws are getting the bonus just fine, but the bite doesnt appear to be....
Post Levels, Priority - 10000
The Secndary Claw attacks are showing up correctly (1d6 + 1/2 str mod + 1/4 level)
But the bite is just showing the damage plus normal str mod, no enhancements.
I have the Bite and Claws as bootstraps.
here are the tags for each
Bite
Group ID: wMain Tag ID:1d6_5
Group ID: Helper Tag ID: NatSizeDmg
Group ID: Helper Tag ID: NatPrimary
Claws
Group ID: Value Tag ID: 2
Group ID: Helper Tag ID: NatSizeDmg
Group ID: Helper Tag ID: NatOverSec
Group ID: wMain Tag ID: 1d4_4
Post Levels, Priority - 10000
Code:
~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)
if (#levelcount[Druid2] >= 4) then
field[abSumm].text = "+8 Str, +8 natural armor, +4 Fort Save, bite attack (Magic) - 1d8, 2 Claws - 1d6 (Magic)"
endif
~only run the rest if we're activated
doneif (field[abilActive].value = 0)
hero.child[aSTR].field[aNormMod].value += 8
hero.child[ArmorClass].field[tACNatural].value += 8
hero.child[svFort].field[Bonus].value += 4
[I][B]field[abValue].value += round(field[xAllLev].value/4,0,-1)
#applybonus[BonEnhance, hero.childfound[wBite], field[abValue].value]
#applybonus[BonEnhance, hero.childfound[wClaw], field[abValue].value][/B][/I]
~if we're active, tell that to the hero, so we can enforce the
~restriction on the number of forms active at once
perform forward[Custom.ActiveForm]endif
focus.field[rSpeed].value = 40
The Secndary Claw attacks are showing up correctly (1d6 + 1/2 str mod + 1/4 level)
But the bite is just showing the damage plus normal str mod, no enhancements.
I have the Bite and Claws as bootstraps.
here are the tags for each
Bite
Group ID: wMain Tag ID:1d6_5
Group ID: Helper Tag ID: NatSizeDmg
Group ID: Helper Tag ID: NatPrimary
Claws
Group ID: Value Tag ID: 2
Group ID: Helper Tag ID: NatSizeDmg
Group ID: Helper Tag ID: NatOverSec
Group ID: wMain Tag ID: 1d4_4
Last edited: