• 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

Bond to the Land

Tigz

Member
I'm trying to use the editor to add a custom race i designed. I'm having difficulty though with adding Bond to the Land. I couldn't find any races that have their ability base that I could mimic.

Bond to the Land
Urso develop a deep bond with their home terrains, preferring to use
the lessons passed down generation to generation to live off the land
they are from. Urso gain a +2 dodge bonus to AC when in a specific
terrain type selected from Cold, Forest, Planes, or Mountain.

Normally it allows any favored terrain but for my race i decided to limit it due to flavor. I was hoping I could maybe get some direction on how to properly implement it this. My main issues are in Racial Cust Special how to I make it a dodge bonus to armor and how do I create the Blank Space after the name so that a player can type the chosen terrain?
 
I would use the array-based menu option in the editor, and using the #applybonus macro should work for the bonus.
 
My main issues are in Racial Cust Special how to I make it a dodge bonus to armor and how do I create the Blank Space after the name so that a player can type the chosen terrain?
The blank space or "text box" is done by checking the option "Allows User Text?".

Giving a AC bonus requires using a script which in this case is situational meaning you will also need to have this ability turn on/off from the In-Play tab.

Set the option "Show in Activated Abilities List?". Then add this script at a timing of Post-Level/10000:
Code:
~ If not active get out now!
doneif (field[abilActive].value = 0)

~ Give a +2 Dodge bonus to AC
hero.child[ArmorClass].field[tACDodge].value += 2
 
Back
Top