• 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

Alter Race Base Height & Weight in an Alternate Racial Trait

NinjaMeTimbers

New member
I'm trying to alter the base height and weight of a race with an alternate racial trait and I'm having a bit of difficulty. I found an old thread from years ago here, but I tried it and I don't see any effect. The calculation it shows on the Journal tab for the random height and weight is unchanged. What am I doing wrong here?

My Eval Script in the alternate racial trait (Phase: First, Priority: 10000):

Code:
~ Set pointer to the race of our character
perform hero.findchild[BaseRace].setfocus
~ get out if no focus set
doneif (state.isfocus = 0)

~ Change the values of any fields on the base race you need to
focus.field[rHeightMnF].value = 38
focus.field[rHeightMnM].value = 38
 
Perfect, thanks. The priority was the problem. I set it to First/500 and it works.

@karrel The code I posted above works so you can use that, just make sure the priority is set low enough.
 
Back
Top