• 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

How to give free Exotic Weapon Proficiency?

TCArknight

Well-known member
I'm working on an ability that gives Exotic Weapon Proficiency (Bastard Sword) for free.

I'm adding the Exotic Weapon feat successfully, but I can't seem to automatically choose Bastard Sword.

I've got:
Code:
<bootstrap thing="fExoticWep">
      <autotag group="thing" tag="skipprereq"/>
      <assignval field="fChosen" value="Bastard Sword"/>
      </bootstrap>

However, I get a message - "Bootstrap value assignment is restricted to 'normal' style for field 'fChosen' "

What am I missing? It seems like I did something similar for Cortex though..

Thanks!
TC
 
fChosen is not a real field - it's a special field that holds the choice for a pick-based menu, and that's not something that can be accessed, other than by the user. In Cortex, you were assigning values to regular fields.

There's actually a mechanism to bypass the menu and link the feat directly to what you want. Add the following:

<autotag group="Target" value="wSwordBast"/>

instead of the assignval line you were using.
 
Thanks!

Although, I get "Unrecognized attribute 'value' in element 'autotag' " when I use that.

Looking at the Wiki, I see 'group' and 'tag' as the valid elements.

When I try making it <autotag group="Target" tag="wSwordBast"/> it compiles fine, but the display is "Exotic Weapon Proficiency - " with no way to choose. At the same time, if I go to the gear to select a Sword, Bastard it is still greyed out as if non-proficient.

Suggestions? :)
 
Ignore the Exotic Weapon Proficiency feat and just give the proficiency directly on the class or whatever... If you really want it to show in the feats tab, make a copy of Druid Weapon Proficiency (so it will have the Helper.Helper tag and therefore will not be shown in the selection screen) and rename it Exotic Weapon Proficiency: Bastard Sword .

In an Eval script do:
perform hero.assign[WepProf.wSwordBast]
 
Thanks LG. :)

That did it. I've got it working, but it still seems like a workaround.

Mathias or Colen, Any suggestions on getting it working with the EWP feat? I'd hate to have to do the same thing every time I wanted to give a specific choice (say a Weapon Focus (Dagger) ) as a bonus feat.

TC
 
Okay, it looks like the exotic weapon proficiency wasn't modified to actually do anything with the Target tags it's assigned. I'll get that fixed in the next update.

The general mechanisms for feats are still picking up on the presence of the Target tag and hiding the selector, so that's why there's no option to make a selection after adding a Target tag to EWP.
 
I noticed the Target group was now enabled for EWP, thanks!

I think that will be a big help for a lot of things down the road. :)
 
Back
Top