• 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_bootcustom restrictions

RavenX

Well-known member
Mathias,

Is there a way to restrict an it_bootcustom to only show a list of items that have a specific tag? Say Equipment.Natural for natural weapons to be bootstrapped via the editor.
 
Set up a match expression:

Code:
    <inputthing
      name="Armor Features"
      helptext="Choose any armor features this armor always comes with.">
      <it_bootcustom compset="Equipment" target="child">
        <match><![CDATA[
          ModCat.ArmorFeat & !thing.showonly
          ]]></match>
        <inputthing
          name="Fixed Rating?"
          helptext="If this gear uses ratings, specify the minimum rating it can be set to.">
          <it_tagcheck group="Equipment" tag="FixRating"/>
          </inputthing>
        <inputthing
          name="Rating"
          helptext="If this gear is only available at a single rating, specify that here.">
          <it_field field="grUser"/>
          </inputthing>
        </it_bootcustom>
      </inputthing>
 
Back
Top