• 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

Custom feat help

TGamerGrl

New member
Hello everyone! I am trying to create a custom feat for content that has not yet been released for Hero Lab. The feat in question is Improved Lay on Hands from the Niobe book. The feat makes it so that when you use Lay on Hands on another creature, it converts the die from d6 to d8. I can't figure out how to build a custom feat in the editor that does this. Any help would be appreciated!
 
To change the dice size you only need to change the abValue2 of the ability called "cPalLayHnd".

This can be done with the following script.

Post Attributes/20000
Code:
      hero.childfound[cPalLayHnd].field[abValue2].value = 8
The above script changes the Lay on Hands dice size to 8.
 
Last edited:
Back
Top