• 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 with Skillful weapon property

Ionik Knight

New member
Greetings,

Would anyone be willing to help me with the scripting for the Skillful weapon enhancement?

(Complete Arcane, p. 144)

Price: +2 bonus
Property: Melee weapon
Caster Level: 11th
Aura: Moderate; Transmutation
Activation: —

Highly prized by many arcane spellcasters, a skillful weapon can be wielded without penalty by a character not normally proficient with it. In addition, the wielder's base attack bonus improves to a minimum of 3/4 his level (as a cleric of the same character level) when he attacks with a skillful weapon, though he gains no such bonus with any other weapon, even if a skillful weapon is wielded at the same time.

The skillful special ability can be added only to melee weapons.
 
I think the first part should be relatively easy, but the second part might take a little work. This is probably something that should be added to the community set so I'll take a look at adding that as soon as I get the chance. We're probably about due for a new release anyway.
 
I have added this and Clouting to the next release. The script I created is as follows:

Final Phase: 9999
Code:
~ Apply proficiency tag to parent

perform container.parent.assign[Helper.Proficient]

~ Check BAB and increase if necessary

var BAB as number
BAB = round(herofield[tHitDice].value*.75,0,-1)
BAB = maximum(0,BAB-hero.child[Attack].field[tAtkBase].value)
container.parent.field[wAttBonus].value = BAB
 
Back
Top