• 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

STR or CON Bonus

I am not 100% sure I am following what your asking for but maybe if you check out the Human ability to apply a +2 bonus to a chosen ability it may point you in the right direction. It would be found under "Racial Special" tab and is called +2 to one ability score.

Hope that helps.
 
What I want to do is, for example, when a character reaches 4th level....he may choose to apply a +2 bonus to his Strength or to his Constitution (not both). So, how do I script this choice.

Thanks!
 
I guess what I was asking for was what Thing is this on? Is it a feat, a trait, a class ability, or are you talking about EVERY character regardless of class or race should get this?

The answer or script can be a little different based on what Thing it will be attached to.

If its meant to be for every class then you may be beast doing an Adjustment from the Adjust tab and doing a Permanent adjust to an ability score and then in the "Source" section you could put in a note that says "4th level adjustment" or such.
 
I know now how to give the bonus, but how do I script it so there is a choice to put the bonus on either STR or CON attribute when selected? (not both scores)
 
Code:
~Pre-Levels 5,000
      ~ If we've not chosen anything, get out
      doneif (field[usrChosen1].ischosen = 0)

~Give Bonus to either Str or Con
field[usrChosen1].chosen.field[aStartMod].value += 2
For the Custom Expression enter: thingid.aSTR|thingid.aCON. Restrict First List To... "All Picks on Hero"

The custom expression tells HL to display a drop down list allowing a choice of either Str or Con. The script then takes the Thing that was chosen and adds 2 to the Starting value of it.

Hope that helps.
 
Back
Top