• 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 Requirements

Smittyman

Member
I'm trying to create the requirements for a custom prestige class I've created. One of the requirements is to have a base Will Save of at least +3. I've looked through all the other prestige classes and I can't find an example of how to do a lookup on Will Save. Can someone provide me the variable I need to query for that as I can't find it anywhere. Thanks in advance.
 
Go to "Develop->Enable Data File Debugging". Then go to "Develop->Floating Info Windows->Show Selection Fields". In the new window select "Will Save (svWill)" and press OK.

In the new window you will get to see all the "Fields" and values that is setup for the Will Save pick. With that can you figure out which field you need and can code the Pre-Req?
 
Thanks for the info. That helped me find the variable I needed. This prestige class required a Base Will Save of +3, so I put the following code in the Expr-reqs section on the Class Level tab:

Code:
child[svWill].field[svBase].value >= 3

Works like a gem! Thanks again!
 
Back
Top