• 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

Overriding the BAB of a character.

bodrin

Well-known member
I have a weapon that uses it's own BAB instead of the characters.
I've tried to set the wAttBAB and the wAttack fields respectively but cannot figure out how to negate the BAB of the created hero!

The rod uses its own attack bonus (+12) rather than yours, and each attack deals 6 points of bludgeoning damage. Treat the rod as a magic weapon for the purpose of overcoming damage reduction.

Any ideas how to do this gratefully recieved!
 
Last edited:
Another request for help

Im trying to code a weapon that adds a Profane bonus to ranged touch attacks only but when i try to apply the BonProf tag to wAttRanged or wRanAtk it throws an non existant thing referenced error!

This +1 light mace confers a +1 profane bonus on your ranged touch attack rolls while you hold it. This is a continuous effect and requires no activation.

Any ideas?
 
Last edited:
I have a weapon that uses it's own BAB

Look at my Flurry of Blows mod for Pathfinder, it looks up the attacks with a weapon. You could use that, subtract the BAB of the hero, then add the BAB the weapon uses. Then update the live name to put the attack roll value.

Im trying to code a weapon that adds a Profane bonus to ranged touch attacks only

Code you tried?
 
Code you tried?

Ranged attack profane bonus

~ If we're not equipped, get out
if (field[gIsEquip].value + field[wIs2nd].value = 0) then
done
endif
#applybonus[BonProf, hero.child[wRanAtk], 1]

then

Weapon BAB

~ If we're not equipped, get out
if (field[gIsEquip].value + field[wIs2nd].value = 0) then
done
endif
perform hero.assign[wAttBAB], 12]

The Profane bonus errors out and the weapon adds the heroes BAB to the 12 making an attack bonus +13
 
Back
Top