• 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

'Built-in' Feat

DannyBoy2k

Well-known member
Indeed. There are more than one class who gets feat 'X' at level 'Y', automatically and without having to forfill any pre-requisites. How would I go about doing this?
 
DannyBoy2k wrote:
>
>
> Indeed. There are more than one class who gets feat 'X' at level 'Y',
> automatically and without having to forfill any pre-requisites. How
> would I go about doing this?

You'd add it as a normal bootstrap, with a condition something like this:

count:Classes.Sorcerer >= 5

This tag expression means "TRUE if we have 5 or more Sorcerer tags",
which means if you have 5+ levels of Sorcerer. The XML would look like this:

<bootstrap
thing="fToughness"
phase="First"
priority="10000"><![CDATA[

count:Classes.Sorcerer >= 5

]]></bootstrap>


Hope this helps,

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