• 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

using a custom race ability to add limbs.

Enforcer84

Well-known member
So this race I'm making, has mutations and it's possible for the character to be born with two extra limbs.

so I tried this...

hero.field[rNumHands] += 2

but that didn't work.
 
Where is the rNumHands field, and where did your eval script look for it? Also, what kind of field is rNumHands?
 
...I have no clue. I was proud of myself for finding it :)
It's in the race creator tab, size and shape - shows up under the fields button. But I don't see a location or timing for them.

Not sure what time of field it is...
 
Well, rNumHands is on the race, so you'd need to go there first. Also, you'll want to affect it early, so make sure your eval script runs early.

Fields which store numbers are value fields, and you need to add ".value" to the end of your transition to affect their contents. Fields which store words are text fields, and similarly you'd add ".text" when manipulating their contents.

Check out the Intro to adding Content seminar video from last year for basics like different types of fields and how to transition where you want to go.

https://www.youtube.com/watch?v=ZzrfEMuG_cw
 
...and I found the ability...I was using a . in the wrong spot

it's

herofield[tNumHands].value += field[abValue].value

and I was a) not using an abValue field and b] I had the silly "." between hero and field.
 
I was pleased that I managed to work out the sexual dimorphic requirements and level requirements for the mutations.

The growth/size increase worked like a charm.

my next trick is setting up a second mutation at level 8.
 
Back
Top