• 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

Natural Bond Feat

The natural bond feat adds 3 levels to a characters effective druid level when determining the abilities of your animal companion.

How would I add this so that it automatically transfers to a ranger's animal companion?
 
fatherdante wrote:
>
>
> The natural bond feat adds 3 levels to a characters effective druid
> level when determining the abilities of your animal companion.
>
> How would I add this so that it automatically transfers to a ranger's
> animal companion?


The animal companion is controlled by a pick with the unique id
"cAnimComp", with a "CompLevel" field that controls the level of the
animal companion. So you should be able to write a script that does this:

hero.childfound[cAnimComp].field[CompLevel].value += 3

For this purpose, the phase and priority have to be set specifically,
because of how tightly companions have to be integrated into the order
of stuff. Specifying a phase and priority of First/499 should do the trick.


Hope this helps,

--
Colen McAlister, colen@wolflair.com
Chief Engineer, Lone Wolf Development
 
Thanks! That worked perfectly! I think I may actually get the hang of this someday.

Do you guys plan on doing an instructional seminar at GenCon this year?
 
fatherdante wrote:
>
>
> Thanks! That worked perfectly! I think I may actually get the hang of
> this someday.
>
> Do you guys plan on doing an instructional seminar at GenCon this year?


Yes, we'll definitely be doing a seminar at Gen Con. :)


--
Colen McAlister, colen@wolflair.com
Chief Engineer, Lone Wolf Development
 
Hopefully some of the content from that seminar will be made available to those of us who can't attend. IIRC, GenCon is right about the time my baby's due to be born.
 
FifthWanderer wrote:
>
>
> Hopefully some of the content from that seminar will be made available
> to those of us who can't attend. IIRC, GenCon is right about the time my
> baby's due to be born.


My Grand Plan(tm) is to do a hand-out and then distribute that as a PDF
after the seminar and/or as part of the standard HL documentation.
Hopefully this year it will come to fruition...


--
Colen McAlister, colen@wolflair.com
Chief Engineer, Lone Wolf Development
 
Back
Top