• 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. Add cross skills.

alucardu

Member
I want to create a feat called 'Private Investigator", the feat should be free to pick (costs no feat). And should add:

Bluff,
Gather Information,
Diplomacy

To the list of skills of the character so he can level it as if it were a class skill.

I've got the editor open, but it's quite hard to figure out how to add something like this although it seems like a small thing.

//edit

Figured out that adding this to the feat:

perform hero.child[cHelpRgr].assign[ClassSkill.kBluff]
perform hero.child[cHelpRgr].assign[ClassSkill.kGatherInf]
perform hero.child[cHelpRgr].assign[ClassSkill.kDiplomacy]

Gives the skills to the class. Now I have to figure out how to remove the cost of the feat.

//edit. Changed it from a feat to a trait and fixed it.
 
Last edited:
Figured out that adding this to the feat:

perform hero.child[cHelpRgr].assign[ClassSkill.kBluff]
perform hero.child[cHelpRgr].assign[ClassSkill.kGatherInf]
perform hero.child[cHelpRgr].assign[ClassSkill.kDiplomacy]

Gives the skills to the class. Now I have to figure out how to remove the cost of the feat.

Keep in mind this only works if the character has at least one level in Ranger. if the feat requires that character be a Ranger, then that may be all you need. If not, you might want to look into using a class chooser or simply applying the skills as class skills to all classes.
 
Back
Top