The wiki is currently a work in progress. If you'd like to help out, please check the Community Portal and our getting started guide. Also, check out our sister project on poewiki.net.

Item filter: Difference between revisions

From Path of Exile 2 Wiki
Jump to navigation Jump to search
(Created page with "== Item Filters == (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: Show BaseType == "Riveted Mitts" SetFontSize 45 SetTextColor 255 255 255...")
 
(expanded)
Line 1: Line 1:
== Item Filters ==
An '''Item filter''' allows a player to customise the appearance of [[item]]s 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 [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:
== 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:


     Show
     Show
Line 11: Line 12:


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".
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".
[[Category:Item mechanics]]

Revision as of 15:49, 13 December 2024

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. 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".