• 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

Silly Question - Missing Buckler?

Gilmax

Member
I am creating a new character and want him to have a buckler, but when I go to the Armor tab, and add a new peice of Armor, I do not see buckler as an option. I verified in the Editor that I have two bucklers that I can copy from (mBuckler, and mBuckler2), but I still do not show it in the list (and I do have the filter set to Everything). What am I missing?

Gilmax
 
Hmm...that's weird. I don't see it either. mBuckler2 requires the Legends of the Twins source to be checked, but mBuckler has no source. I copied mBuckler in the editor, gave it a unique id and saved it. Now it does appear in the list. Not sure what the problem is there.
 
What "Replaces Thing Id" options are set on those two copies of the buckler?

Remember, "Replaces Thing Id" is checked BEFORE sources are checked, so if you've replaced the regular buckler with one that has a specific source, you're not saying "use these variant stats when we have this source checked" - you're saying "this item now has this source".
 
I checked that. Neither of them uses Replaces Thing Id.

Edit: Check that. mBuckler2 does replace the first one, but you have to open the file to see it (using New (Copy) doesn't copy over the replace Id - live and learn). I'll fix this for the next community release.
 
Last edited:
Looking at the file, there is a Buckler Proficiency that the author added that applies only to Bucklers. The new buckler (mBuckler2) has a pre-req that requires either the Buckler proficiency feat or the normal shield proficiency. The fix I'm going to put in place is as follows:

Retain the "Replace Thing Id", but remove the source so that its always available. I kept the pre-req but removed the Message so that a user who can't use a Buckler sees only the default "Shield Proficiency Required". Otherwise, the user would see both that and "Buckler Proficiency Required". Since the former message appears to be handled internally, I don't think there's a way to turn that off. If anyone has a better suggestion, I'm all ears. Otherwise, this is the fix that will go into the next release.
 
Can you add

validif (hero.tagis[source.XXXX] = 0)

to the beginning of the prereq? That would mean that unless that specific book were enabled, this prereq is turned off for that item.
 
I think I added that for one of the new base classes (I think it was Mariner) that only gets buckler proficiency but not proficiency in all shields.
 
Can you add

validif (hero.tagis[source.XXXX] = 0)

to the beginning of the prereq? That would mean that unless that specific book were enabled, this prereq is turned off for that item.

Yes, that does work. Thanks. I cheated a little and made the message read "Buckler Proficiency or" so that the message users see is this:

Buckler Proficiency or
Shield Proficiency required

I think I added that for one of the new base classes (I think it was Mariner) that only gets buckler proficiency but not proficiency in all shields.

Yes, it was the Mariner.
 
Back
Top