• 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

Acrobatics from Dex Mod to Cha Mod

spannclann

Well-known member
I want to change Acrobatics to a Charisma based skill for a home brew subclass.

Currently, it is almost 3:45am and my brain has pretty much stopped working. However, I believe I need to somehow change skAttrAbbr and possibly skAttrBon.
 
I assumed I needed to replace tags to get it to work, but this is giving me an error.

perform tagreplace[skAttrAbbr.aDEX,skAttrAbbr.aCHA]

The error is "Group 'skAttrAbbr' not defined"

***EDIT***

I just realized I told it what to replace but not what skill to replace it for.
 
Last edited:
I got it to work. I found an eval script for Armor Class and made a few substitutions.

if (#attrmod[aDEX] > #attrmod[aCHA]) then
hero.child[skAcrobat].field[skAttrBon].value = #attrmod[aDEX]
else
hero.child[skAcrobat].field[skAttrBon].value = #attrmod[aCHA]
endif
 
You could simplify it, as by default the attribute for Acrobatics is Dex

Code:
if (#attrmod[aCHA] > #attrmod[aDEX]) then
  hero.child[skAcrobat].field[skAttrBon].value = #attrmod[aCHA]
endif
 
Back
Top