• 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

it_taglist name

AndrewD2

Well-known member
When using it_taglist and the extratag element, how do you get a name to show up identifying what the different tag groups are? Like in Pathfinder for adding bonus feats you see:

Category:
Bonus For:
Feat:

I tried adding the title and the addtitle attributes with names in them and nothing showed up besides showing the tag group.
 
Ah OK. The name attribute is not listed in the group element wiki page. Is there a DTD for the structural files like there is for the dat/user files?
 
Also is there a reason there isn't a name attribute on the identity element? (Since that's what these were, I just did the work around and created them also in tags.1st with dynamic="yes")
 
Ah OK. The name attribute is not listed in the group element wiki page. Is there a DTD for the structural files like there is for the dat/user files?

In your Attribute component in traits.str you can define a tag group.

Code:
<identity group="whatever"/>

You can access these identity group tags for attributes and use them in an it_taglist. Identity tags are created for every attribute when you use this. You can just rig up your it_taglist to use them amd the tags will appear in the editor.
 
Also is there a reason there isn't a name attribute on the identity element? (Since that's what these were, I just did the work around and created them also in tags.1st with dynamic="yes")
When you say you created "them" in the .1st file do you mean you created each and every tag or just the group?

So in example in d20 I did the following for a identity element I added to track activated abilities.

Identity setup:
Code:
    <!-- Each pick with a charge has the following identity tags. These help to control
         which activated ability is turned on. These tags will get pushed early to the 
         hero allowing them to be tested by other picks.
         -->
    <identity group="Activated1"/>

Setup in the .1st file:
Code:
  <group
    id="Activated1"
    name="Activated One"
    dynamic="yes">
    </group>

And then it's results on the Pick:
Image1.png
 
Back
Top