• 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

Filtering of item selection lists

I am currently creating a template for Pathfinder, for it I have created a Skilled Racial Special Ability, it works mostly the same as the Human one, except the player gets a choice, from a list, of which abilities they want to gain the bonus to.

The skills I need to show them are: Acrobatics, Intimidate, Perception, Sense Motive, Stealth, Survival.

So far I have everything working not including the filter. After searching the forum for a while I worked out that it will probably use something akin to:

Code:
component.BaseSkill & Helper.SkCatKnow

in the Custom Expression field, just wondering if anyone had a solution to this that I haven't found yet :)
 
In the Skills tab of your portfolio, if you right click on one of the skills and select "Show Debug Tags" you can get a list of some potentially useful things. I might start with the thingid.
 
What Sendric is getting at is, that you will have something like this (you will have to find whatever the ids for the skills you want are for PF).

Code:
thingid.<AcroID> | thingid.<IntimID> | thingid.<PerceptID> | thingid.<SenseMotID> | thingid.<SurvivalID>
 
Back
Top