• 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

Feat that adds a Class Skill

tatteredking

Well-known member
OK, so I am adding in a Feat that makes a certain skill a class skill, and I am having issues determining how to go about this. The only feat I can find in Pathfinder that makes a skill a class skill is Hermean Blood. Hermean Blood has the Eval Script

Code:
 ~ If we're disabled, do nothing
      doneif (tagis[Helper.FtDisable] <> 0)

      perform field[usrChosen1].chosen.assign[Helper.ClassSkill]
      perform field[usrChosen2].chosen.assign[Helper.ClassSkill]

I have looked through some of the traits, but not all, to see if there is one that would do what I am looking for, but, at the risk of going through every trait and not finding anything, I'd like to ask if anyone knows of a trait, or feat, for PF that I should look at for assistance?

Thanks!

TK
 
Seems to Work

The following seems to work

perform hero.childfound[skAcrobat].assign[Helper.ClassSkill]
 
Back
Top