• 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: adding a weapon proficiency to an NPC

bgr

New member
Hi, I'm new to Hero Lab, so apologies if this is something obvious.

Suppose I want to have a Guard NPC that carries a short sword instead of the basic spear. Or maybe a Commoner with a quaterstaff instead of a club. I can add the weapon, but the character doesn't have proficiency with it, so it won't add the proficiency bonus. Is there a simple way to just add the proficiency?

I've tried to add an adjustment of a weapon proficiency, but the only thing it gives me on the drop to select is the weapon that the character already uses. Same result under Personal > Permanent adjustments. I can sort of fudge it by adding a flat +2 to all weapon rolls, but I feel like there's a better way to do it.

Am I missing something?
 
Hi Bgr,

The easiest way that comes to mind is to apply an adjustment to your character/NPC. Since I couldn't find one already provided (other than the apply the proficiency to a specific weapon), I've made one myself.

Here is the script:

<thing id="pJFLWpProf" name="Simple & Martial Weapon Proficiency" description="Gives Simple & Martial Weapon Proficiency to hero." compset="InPlay" summary="Gives Simple & Martial Weapon Proficiency to hero.">
<tag group="OthAdjCat" tag="SkillProf"/>
<tag group="Helper" tag="NoIncr"/>
<eval phase="PostLevel" priority="5000">doneif (field[pIsOn].value = 0)

perform hero.assign[ArmProfGrp.WepSimple]
perform hero.assign[ArmProfGrp.WepMartial]</eval>
</thing>

It can easily be modified to apply only simple or martial proficiencies, but since this was for an NPC, I guessed it would be easier if both were assigned to him from the start.
 
Hi, I'm new to Hero Lab, so apologies if this is something obvious.

Suppose I want to have a Guard NPC that carries a short sword instead of the basic spear. Or maybe a Commoner with a quaterstaff instead of a club. I can add the weapon, but the character doesn't have proficiency with it, so it won't add the proficiency bonus. Is there a simple way to just add the proficiency?

I've tried to add an adjustment of a weapon proficiency, but the only thing it gives me on the drop to select is the weapon that the character already uses. Same result under Personal > Permanent adjustments. I can sort of fudge it by adding a flat +2 to all weapon rolls, but I feel like there's a better way to do it.

Am I missing something?
I appear to be missing something. "Weapon Proficiency" does exactly what you want. Add the "Shortsword" to your character and use the adjustment to make your NPC proficient with it.

Why do you need to give a proficiency with a weapon the NPC does not actually have? :confused:
 
Question

Where would I add the script? I need to add Simple and Martial weapons to my character because of a bonus. Please help
 
No need for a script or a new adjustment. Here's what you do: first, add whatever weapon you want them to use to the character, even if it's greyed out. Then add the weapon proficiency adjustment on the adjustments tab. Select that weapon you just added. Finally, equip that weapon, since you're now proficient. Easy.
 
Armor should work the same way, with the armor proficiency adjustment.

I don't know about spell slots; I can't recall seeing an extra spell slot adjustment, but it might be there. Short of a bit of work in the editor, you could just remember to not mark off a slot 1/rest.
 
Back
Top