• 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

Adopted type feat not working...

JolarEQ

Well-known member
So I'm trying to make a feat that's pretty much an exact duplicate of Adopted, but with different flavor text. I copied the trait, changed the name and the flavor text, and saved it. When I try to use it, it doesn't allow me to choose any racial traits, it shows them all as unavailable. However, when I use Adopted on the same character, it works fine. Is there something I need to do to get it to work?

Again, I just did New (Copy) and chose Adopted, and changed nothing but the name and text.

If there is any more info needed, please let me know!
 
Adopted is one of those "strange/unique" Things that LW decided to special code behind the scenes. So the only way to get your new "trait" to work is to trick HL into thinking that it has the adopted trait.

Add this script to your new trait running at First/1000
Code:
~ Add to traits allowed
hero.child[resTrait].field[resMax].value += 1

~ To get the ability to allow any race trait we have to trick HL
~ into thinking we have the CORE Adopted trait. By assigning these
~ three tags to the hero we do that.
perform hero.assign[HasTrait.trAdopted]
perform hero.assign[Ability.trAdopted]
perform hero.assign[HasAbility.trAdopted]
 
Back
Top