• 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 list, Bludgeoning Melee Weapons

Pezmerga

Well-known member
I used the following as a custom expression for a feat with a selection.

"component.BaseWep & wCategory.Melee & wType.B"

It doesn't let shield bashes show up the same way they do with Focus or Specialization.

They show up as "Heavy Shield", "Light Shield" etc. instead of "Shield, Heavy" etc.

The problem is that the feat requires that the chosen weapon also be chosen with weapon focus and Specialization, so when I choose "Heavy Shield" with the feat, and "Shield, Heavy" is chosen with Focus and Specialization, it throws an error.

Any ideas what I can do to make it so I can select shield bashes they way they show up on weapon focus or specialization?

Alternatively I can check to see if the weapon type of the weapon taken with Weapon focus and specialization matches the weapon selected with my feat, cuz really it just needs to match the same weapon type as a prereq. (Prereq: weapon focus with Bludgeoning weapon etc.) checking to see if they were the same was the best way I could figure out how to do that though.

Eval Rule
Code:
Post Levels 10000

@valid = 0
doneif (field[usrChosen1].ischosen + tagis[Target.?] = 0)

var sel as string

sel = field[usrChosen1].chosen.idstring

validif (hero.tagcountstr["WepSpec." & sel] <> 0)

validif (hero.tagcountstr["WepFoc." & sel] <> 0)
 
Last edited:
Back
Top