• 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

Skill Focus specific list

direinsomniac

Well-known member
I am trying to figure out how to create a small list of skills that can be selected by Skill Focus instead of all of them. Also then want to take the picked selection and make is a class skill.

I've been out of the HL coding for a while, and probably forgot more than I learned originally. :P
 
So like, some ability says "You gain skill focus, but must choose X, Y, or Z"? If the skill focus feat is bootstrapped, then you can set the candidate expression field (usrCandid1) directly in the bootstrap. If it is added to a table by a user, then you'll need to transition to the correct copy of skill focus and set that field in a script.

As for setting the class skill, you'll need to get to the correct copy of the feat. If bootstrapped, define a Custom tag to serve as a marker and assign it as part of the bootstrap. If added to a table, there should be a combination of tags you can use within a findchild to get you there (I believe most tables have a tag which means "taken within this table" and you can combine that with the thingid tag of the feat to get to the right copy).

Once there, check to confirm the feat has made a selection, and if so, transition through the "chosen" link to get to the correct skill and assign Helper.Proficient. Tell me if I am on the right track and give it a shot yourself. If you need further tips post what you're trying and I'll try to aid further.
 
Back
Top