• 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

BAB Level

Frodie

Well-known member
Ok trying to change the BAB for a class in a script. Any ideas?


hero.child[cHelpMdH].field[cAttack.Good]


Thank you!
 
cAttack.Good is a tag, but you have it inside brackets of a field which won't do at all. Try assigning the tag to your class helper instead.
 
I have this in a Custom Ability. I did add it to the tags, but it didn't work.

The next script I tried was:
perform hero.child[cHelpMdH].assign[Helper.cAttack.Good]

But the error I am getting:
Hero Lab was forced to stop compilation after the following errors were detected:

Syntax error in 'eval' script for Thing 'ctestatk' (Eval Script '#1') on line 1
-> Invalid syntax for tag template
 
Last edited:
The next script I tried was:
perform hero.child[cHelpMdH].assign[Helper.cAttack.Good]
That is not a valid tag. Tags start with a group id (ie Helper, Hero, xxx) and then has a dot followed by the specific tag (Good, Caster, xxx).

So based on your first post I assume you mean "cAttack.Good".
 
yep, "cAttack.Good".
In the Tag Box: group id is cAttack and Tag id is Good under Archetypes and classes. But will not work in a Custom Ability. That is the need for the script.


Got it:

perform hero.child[cHelpMdH].assign[cAttack.Good]

Thanks yall!
 
Last edited:
Back
Top