• 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

UA Ranger Beast Master

Redjack

Well-known member
I noticed that the UA Ranger, under Companion's Bond, says "Whenever you gain the Ability Score Improvement class feature, your companion’s abilities also improve. Your companion can increase one ability score of your choice by 2, or it can increase two ability scores of your choice by 1."

I noticed that in the Community Files, this does not work. I fiddled around and I see where I can read the level of the ranger to the companion, but I can't figure out how to give the companion ability score improvements...?
 
The ability score improvement/feats are baked into class logic, and your animal/minion generally doesn't get a class. The mechanism classes use is the cAttrArray which I suspect doesn't exist for a race (haven't tried it out).

The only way I could think of doing this indirectly would be to maybe to create and bootstrap abilities on your Beastmaster at 4th, 8th, 12th, 16th and 19th that prompt you for which score/scores you want to modify by +1 or +2. You then would have scripts that see what you select and then you use minion/master logic to assign attribute bonuses and such.

Things like:
minion.childfound[aSTR].field[aStartMod].value += 2
 
Back
Top