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

vivisect

Member
For the most part, I've found it pretty easy to test for prerequisites, but how do I test for character size and base saving throw prereqs?
 
At 03:23 PM 2/8/2007, you wrote:

>For the most part, I've found it pretty easy to test for
>prerequisites, but how do I test for character size and base saving
>throw prereqs?


Testing size isn't something we can easily support right now - I'll
have it added for the next release.


To test the base saving throw in a pre-req, set the script to
something like this:



if (child[vRef].field[vBase].value >= 3) then
@valid = 1
endif



This example will give an error if the base Reflex save is less than
3. You can change "vRef" for "vFort" or "vWill" to test the other
saving throws. Note that this will only test the basic save - it
won't count any attribute bonuses or resistance bonuses that have
been added to it. Is that what you need?


Hope this helps,



--
Colen McAlister (colen@wolflair.com)
Chief Engineer, Lone Wolf Development
http://www.wolflair.com/
 
Back
Top