• 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 element setup it_linkage?

ShadowChemosh

Well-known member
So this is for Pathfinder but as its way more advanced and not directly tied to Pathfinder game system I figured I would ask here.

So I have the following setup for a new editor inputthing element:
Code:
    <inputthing
      name="Class Linkage"
      helptext="Select the class helper that is to get maneuvers and stances.">
      <it_linkage compset="Class" linkage="powClass"/>
    </inputthing>
So the above works great as it allows linkage to Class compset. I was hoping to limit the list of classes down by saying I only want the Class compset that have tag X. I sort of seen this work with the bootstrap stuff using <match>.

So tried a few variations of the following:
Code:
    <inputthing
      name="Class Linkage"
      helptext="Select the class helper that is to get maneuvers and stances.">
      <it_linkage compset="Class" linkage="powClass"/>
      <match><![CDATA[PathOfWar.Class]]></match>
    </inputthing>
So that we only match with those with the specific tag?

The inputthing is not documented well on the wiki and instead of me spinning my wheels trying different combinations. I figure a simple answer of yes/no would be helpful. :)

Thanks!
 
Match is a child element of it_linkage, not a separate XML element.

Code:
<it_linkage compset="Class" linkage="powClass"> 
  <match><![CDATA[PathOfWar.Class]]></match>
  </it_linkage>
 
Back
Top