• 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

Prestige Class Query

TalMeta

Well-known member
I'm working on a couple of prestige classes, and was wondering if anyone could tell me the proper way to impose the following limits:

The need to know a specific language?
The need to worship a certain deity?
The need to be of a specific ethnicity?
The need to have weapon focus with a certain weapon? (as opposed to weapon focus period)
The need to be a specific sex?
:confused:
 
Last edited:
Everything in the Pathfinder files uses the same system for writing requirements, so you can think of feats, traits, prestige classes, or anything else that has a similar requirement, and then using the "New (Copy)" button on the bottom left corner, bring up a copy of that thing, and see how it implements that prereq.

(For classes, the prereqs and exprreqs are on the Class Level tab).

So, try making a copy of the Dragon Disciple to see how it requires knowledge of the draconic language, and find a religion-specific feat to look up how to write a deity prereq.
 
Actually, I did make a copy of the dragon disciple and it doesn't have any expr-reqs or pre-reqs to look at, only an eval script that has nothing to do with languages. :(

Can you perhaps recommend a sex specific feat that I can go look up? Because I can't really think of any offhand. :)
 
Last edited:
Make a copy of the dragon disciple in the "Class level" tab, not in the "Class" tab - there you will find the various requirements under the "Pick-reqs", "Expr-reqs" und "Pre-reqs" - buttons. Concerning the sex... well, I don't know, sorry!
 
Okay, I have that. How about specifying a specific weapon to have the weapon focus feat for? I tried:

#hasfeat[fWepFoc.wDarkha] <> 0

But it kicks that back as invalid.

Also, how about applying bonus skill ranks, as opposed to a skill bonus? (applying a bonus to Linguistics doesn't work right).
 
Last edited:
Okay, I have that. How about specifying a specific weapon to have the weapon focus feat for? I tried:

#hasfeat[fWepFoc.wDarkha] <> 0
Take a look at the "Aldori Dueling Mastery" feat.

But it kicks that back as invalid.

Also, how about applying bonus skill ranks, as opposed to a skill bonus? (applying a bonus to Linguistics doesn't work right).
There are "Skill Point" adjustments that have scripts you can look at.
 
The Keleshite Princess from the Qadira book has a "Female Required" prereq:

Code:
hero.child[background].field[bGender].value = 1

Male would be:

Code:
hero.child[background].field[bGender].value = 0

Ethnicity:

Code:
#hasability[Ethnicity's Id] <> 0
 
Thanks again! I did eventually ponder out the ethnicity requirement, but would never have figured out the gender one. :)
 
Back
Top