• 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

Help with Race Creation

asmonty

Member
I am really new to Hero Lab and I am trying to create a race that adds +1 to the Physical condition monitor without adding to any stats. Does anyone have any suggestions?
 
You'll need to enable data file debugging under the develop menu, and then use show selection fields option to figure out what field the number of condition monitors is stored in and then modify it via an eval script on your race such as

Effects 5000
Code:
  hero.child[cmPhysical].child[cmBonus].value += 1

I arrived at this by enabling the datafile debugging as mentioned before and then right clicking the value in the basics summary panel where it says Physical Damage. From there click on show debug fields. Looking at the fields you want cmBonus to boost the health monitor by 1 box. You may need to fiddle around a little with the priority and phase number to get it working correctly, but I think Effects should do it.
 
Last edited:
Back
Top