• 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

Porting class abilities to a feat.

pippin_nl

Well-known member
I have a feat that increases a monster's caster level based on it's hit dice assuming it has at least one caster level:

~ If we're disabled, do nothing
doneif (tagis[Helper.FtDisable] <> 0)

var x as number
x = herofield[tHitDice].value

~ Loop through all Arcane/Divine classes
foreach pick in hero from Class where "CasterSrc.Divine|CasterSrc.Arcane"
~ increase caster level
eachpick.field[cCasterLev].value += int (3*x/4)
nexteach

Is it possible to make a similar script to improve rogue abilities or any other class abilities?
 
It is possible to add to the effective level of other class abilities (for example the monks robe does this for some monk abilities). The main issue would be correctly targetting the correct abilities.
 
Back
Top