Item Filters
Item Filters is a library mod that serves as a foundation for popular modifications like FTB Quests, Modular Pipes, and QNet. The main function of this addon is to provide an advanced item filtering system through a special "Item Filter" element. Developers can easily integrate their own filters thanks to the open API.
To use in quests, simply create any filter (or modify an existing one by holding Shift and right-clicking to change the type), then configure it via right-click. When creating item tasks, select the desired item from your inventory - an icon will be automatically generated as a scrollable list of suitable items, but you'll need to set the task title manually.
Available filter types:
- NOT - Inverts the result of the child filter (for example, excludes apples)
- OR - Triggers when any of the child filters match (apple or carrot)
- AND - Requires all child filters to match (diamond sword and enchanted)
- XOR - Activates when either filter A or B matches, but not both simultaneously (ore names "dyeBlue" or "gemLapis", but not together)
- Ore Dictionary Name - Identifies items by name in the ore dictionary ("ingotCopper")
- Creative Tab - Selects items from a specific creative mode tab ("Building Blocks")
- Mod - Filters items by belonging to a specific mod ("YABBA")
NOT, OR, AND, and XOR filters currently do not have a graphical interface for configuration.