• 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

Half-way done with custom class

I found the "tagreplace" command, but I'm still getting the syntax wrong. The pick is cBLoMedic1, and I want to replace the tag "abAction.Standard" with "abAction.Swift"

Code:
hero.child[cBLoMedic1].tagreplace[abAction.Standard,abAction.Swift]

This produces an error parsing the script. I get the feeling I'm not pointing to the right 'child', but can't for the life of me figure out what it is.
You forgot the word "PERFORM" in front which is required to work with tags.

Code:
perform hero.child[cBLoMedic1].tagreplace[abAction.Standard,abAction.Swift]
 
Last bug before class is complete!

Bug #4 involves an ability that grants Fast Healing, but only if the hero's current hit points are lower than 50% of his total hit points.

I believe that the 'tagis[Helper.SpcDisable]' should be applied if the test condition is false, so at least I have something figured out. What I can't seem to find are where current hit points are located. I think I found total hit points in container.child[Totals].field[tHP].value, but I'm not sure if that's the right field or not.

Where do I find the fields for current and total hit points so I can write my test condition?

I can't hardly believe it, but after nearly a month, I've been able (with an amazing amount of help) to fully create a custom class. Just this last ability remains, and it will be complete.

:cool:
 
Back
Top