• 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

Help with Adding Skill Points

I am trying to add a trait that will grant +2 skill points per level. I looked at the adjustment that does something similar but you must select a class for that ability. The trait will work for all classes.

Thanks
 
I am pretty sure their is a Adjustment for "Skill Total" that increases the total number of skill points on the hero. Skill points are stored in a "Resource" on the hero.

Here is an example script that would increase the total number of skill points a hero has by 2.
Pre-Levels/10000
Code:
~ Give two extra skill points
#resmax[resSkill] += 2
 
Thanks, that gave me the information I needed.

Since it is 2 points every level I used

Code:
#resmax[resSkill] += #totallevelcount[] * 2
 
Back
Top