• 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

Help w/trait to delay 1st level feat acquisition

I'm trying to create a trait that allows a character to delay taking his 1st level feat until he reaches 2nd level. This would allow 3/4 and 1/2 BAB classes to pick up feats requiring a +1 BAB, which I think is worth the cost of a trait for melee-oriented clerics and rogues (and which would be a bit cheesy to simply allow at no cost, IMO).

Can anyone tell me how to accomplish this? I realize I could just create a trait with the appropriate description and tell the player to live with the validation error until 2nd level but I'd rather make it fully functional if possible.
 
Put this in the Eval Script:
Code:
~First 1,000
~If we are level one in any class then remove first level feat.
~at level 2+ this script will do nothing and the normal feat will appear.
If (#totallevelcount[] = 1) then
   ~ Remove level 1 feat
   #resmax[resFeat] -= 1
endif
Set the phase to First priority 1,000
 
Back
Top