Item filter: Difference between revisions
(→Version history: 0.1.1) |
m (→Version history: add 0.2.0h changes) |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
== Early Access == | == Early Access == | ||
Item filters seem to work the same way they did in Path of Exile 1 so far, as described at [https://www.pathofexile.com/item-filter/about the items filter section of the PoE 1 site]. An equivalent page at [https://www.pathofexile2.com/item-filter/about the PoE 2 site] is missing still. The following code is a working example for PoE 2: | Item filters seem to work the same way they did in Path of Exile 1 so far, as described at [https://www.pathofexile.com/item-filter/about the items filter section of the PoE 1 site], it also documents the PoE2 specific Condition ''WaystoneTier''. An equivalent page at [https://www.pathofexile2.com/item-filter/about the PoE 2 site] is missing still. The following code is a working example for PoE 2: | ||
Show | Show | ||
Line 19: | Line 19: | ||
==Version history== | ==Version history== | ||
{{Version history table header}} | {{Version history table header}} | ||
{{Version history table row|0.2.0h| | |||
* Added "UnidentifiedItemTier" as a filter option for Item Filters. | |||
}} | |||
{{Version history table row|0.1.1| | {{Version history table row|0.1.1| | ||
* Item filters can now be used on consoles by subscribing to a filter on the Path of Exile website. | * Item filters can now be used on consoles by subscribing to a filter on the Path of Exile website. |
Latest revision as of 06:45, 15 May 2025
An Item filter allows a player to customise the appearance of items on the ground, as well as hide unwanted items.
Early Access
Item filters seem to work the same way they did in Path of Exile 1 so far, as described at the items filter section of the PoE 1 site, it also documents the PoE2 specific Condition WaystoneTier. An equivalent page at the PoE 2 site is missing still. The following code is a working example for PoE 2:
Show BaseType == "Riveted Mitts" SetFontSize 45 SetTextColor 255 255 255 255 SetBorderColor 240 100 0 255 SetBackgroundColor 0 0 0 255
Placing a file with this content in "%USERPROFILE%\Documents\My Games\Path of Exile 2" (Windows 10+, if you did not move "My Documents" from its default location) makes it available in game in the options window under "Game/General/Item Filter". The game only loads filter files with the file extension '.filter'.
A filter file consists of any number of blocks that are processed from top to bottom. Each block either shows or hides the items specified by it. When a block matches an item, by default, no further blocks are evaluated for this item. This can be changed using the 'Continue' keyword in the block.
By default, no items are hidden.
Version history
Version | Changes |
---|---|
0.2.0h |
|
0.1.1 |
|
0.1.0 |
|