• 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

Changing a spell attribute

Enforcer84

Well-known member
Hey all.

I'm setting up a Paladin Oath I snagged from /r/Unearthed Arcana and one of the class features converts the spell Attribute for the paladin from CHA to WIS.

Is there a way to change the Spellcasting attribute? I was looking at the tags for the Pally class and don't see that one specified.

Anyone else tried this?
 
There is an adjustment in the community pack just for that. (COM_5ePack_PHB - Adjustments.user) - "Casting Attribute"

In the tutorials in the Help file for the editor, there's an example of how to give spells to a non-casting class - it should be the same general method, just have to overwrite the original attribute at the correct time:

Code:
perform linkage[table].setfocus
doneif (state.isfocus = 0)
~ Spellcasting attribute
perform focus.setlinkage[castattr,BaseAttr,"IsAttr.aINT"]

or more directly:

Code:
~ Set spell casting attribute
   perform hero.childfound[cHelpPal].assign[SplAttr.aWIS]
 
Back
Top