• 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

Custom Weapon Proficiencies

AndrewD2

Well-known member
Class I'm working on says you get to pick two proficiencies from a list. Is there a way to do that, or would giving them bonus feat picks specifically for those weapons be a better way?
 
Just have a class ability select from the weapons on the list (make sure the selector is set to "All things"), pull the proficiency tag, and then forward that to the hero.
 
Matter of fact, I think there is a Magus archetype that does something similar already, the Kensai.
 
Ok I've got the selection part, but I'm not sure on pulling the proficiency tag and forwarding it to the hero ...
 
Do you know how to transition to the chosen thing? You can do that with the "chosen" transition:

field[usrChosen1].chosen.DOWHATEVERHERE

The other part is the pulltags command, and the pushtags command. Putting them together like so:

perform field[usrChosen1].chosen.pulltags[TAGGROUP.?]
perform hero.pushtags[TAGGROUP.?]
 
so it would just be:

Code:
perform field[usrChosen1].chosen.pulltags[WepProf.?]
perform hero.pushtags[WepProf.?]

?
 
Heh, yeah I had already tried it, I posted that when I wasn't in Hero Lab, but ended up trying it about 10 minutes later.
 
Back
Top