• 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

Tracker Help

Frodie

Well-known member
I have a Tracker and I have a scriped to add 1 to the total, and it works fine until I made it a class ability and then it adds All the level it recieves th bonus, at first level.
I just want to add 1 point at an assigned level. Any ideas,

Here is the script:

hero.childfound[trkShaHerW].field[trkMax].value += 1
 
Once a Thing is on a hero the script runs unless you specifically tell it not too.

Add the following to the top of all Class Specials eval scripts:
Code:
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)

If you only want to have the first instance of a Class Special run the script then add the following:
Code:
~only run these calculations on the first copy
doneif (tagis[Helper.FirstCopy] = 0)
 
Back
Top