• 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

War Hulk problems

mikedcraft

New member
Hi all,

I'm trying to figure out how to add the War Hulk prestige class, but I'm running into some issues. This is my first time using the editor, but it seems there is no 'base attack: none' option, just Poor/Medium/Good

I could maybe do some kind of attack adjustment? Is that even possible?

I looked but couldn't find that anyone had already posted a version of the War Hulk, so any help at all would be greatly appreciated.

Thanks!
 
Hi all,

I'm trying to figure out how to add the War Hulk prestige class, but I'm running into some issues. This is my first time using the editor, but it seems there is no 'base attack: none' option, just Poor/Medium/Good

I could maybe do some kind of attack adjustment? Is that even possible?

I looked but couldn't find that anyone had already posted a version of the War Hulk, so any help at all would be greatly appreciated.

Thanks!

Hi and welcome to Hero Lab, mikedcraft!

Yes, you can adjust the base attack bonus with an eval script. The simplest thing to do here is probably to set the base attack option to "Good" then reduce the base attack bonus by the number of levels, as such:

Per-Levels / 10000
Code:
var lvl as number
lvl = #levelcount[classtag]

hero.child[Attack].field[Bonus].value -=  lvl

You'll need to replace "classtag" with the tagid for your specific class's Classes.? tag.
 
You'd have to use the modifier for BAB instead of attack bonus. Otherwise you'd still get extra attacks.

Go to the "General" tab and the "Adjustments" subtab. Copy the "Base Attack Bonus" adjustment to see the coding for adjusting BAB
 
Back
Top