• 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

Skill Ranks per Level

Frodie

Well-known member
Ok, this should be my last one, (hopefully).

Alright, it's a Custom Ability that will change your class skill ranks per level. This is what I have and the error.


hero.child[cHelpMdH].field[cvSkillPts].value += 3


Hero Lab was forced to stop compilation after the following errors were detected:

Syntax error in 'eval' script for Thing 'cMHPathStr' (Eval Script '#4') on line 1
-> Only derived fields can generally be modified via scripts (field 'cvSkillPts')


Thank you!
 
It looks like you're trying to change a field that only exists on archetypes (the "cv" prefix means "class variant"). Look for the class-specific version of this field, instead of the archetype-specific version of this field, if you want to alter the class directly.
 
Cool, that got it. Thank you!

BTW here is the script:

hero.child[cHelpMdH].field[cSkills].value += 3

Thank you again!
 
Back
Top