• 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

Editor autotagging

RavenX

Well-known member
Mathias,

I am trying to figure out how to create a spell-like ability bootcustom on the race tab in the editor. I cannot seem to figure out what I need to get hero lab to autotag the Helper.SpellLike tag to be added.

Code:
      <inputthing
        name="Spell-like Ability"
        helptext="Specify which spell the race grants.">
        <it_bootcustom compset="Spell">
        <inputthing
          name="Charges"
          helptext="Specify the number of charges of the spell-like ability.">
          <it_field field="spPrepared"/>
          <[B][COLOR="DarkOrchid"]it_tag[/COLOR][/B] group="Helper" tag="SpellLike"/>
          </inputthing>
        </it_bootcustom>
      </inputthing>
 
I figured it out. Now I understand why you've got Leave Checked items listed in your bootcustoms. They're there to add specific tags.

Code:
        <inputthing
          name="Leave Checked"
          helptext="This checkbox adds the Helper.SpellLike tag to the spell-like ability, leave it checked.">
          <it_tagcheck group="Helper" tag="SpellLike" default="yes"/>
          </inputthing>
 
Back
Top