POE2 Stash Search Guide for Noobs (No Regex)

94

You don't need to know advanced Regex. In fact I don't even know what this is (too lazy to look it up, maybe it is lite regex or something lol). Also sorry the formatting is "just get it done" style. <3
Basically, stash search in POE 2 has some very logical syntax that you can use on the fly to look up a bunch of stuff. Here are the ones I've figured out so far and how they work.
Instead of a guide I will write out the queries and explain what they do and your brilliant minds will see the patterns. :)

The examples I'm giving are in the context of searching through waystones in order to filter in thingies I want or filter out duds that have thingies I don't want as I juice them to 6 affixes.

Basics:

  1. Put each part of a query in quotes. You can have 1 or many parts to a query.
  2. Use words to match those words exactly (like "burn") or use keywords with a colon like "Tier: 14" or "Rarity: Normal" to match tiers or rarities etc. I'll update this as I discover more.

Follow these examples in order to understand...

"tier: 14" will find all tier 14 waystones.

"tier: 14" "rarity: normal" will find all T14 waystones that are of the rarity "normal" (the white ones).

"tier: 14" "!rarity: normal" will find all T14 waystones are are NOT of the rarity "normal" (so it will return all T14 waystones that are blue and yellow). TIP: ! is the NOT operator.

"tier: 14" "rarity: rare" "burn" will find all T14 waystones that are yellow with the word burn anywhere in them (which happens to only be found in burning ground affix).

OPERATOR SYNTAX TABLE

OperatorSyntaxExampleNotes
NOT!"!burn"Can be used with keywords as well like "!rarity: normal"
ORwon't let me type it in redditwill return burn solo, ailment solo, or both together.
ANDJust use more " " in the same query."burn" "ailment"will only return items with both "burn" and "ailment" together.
Wildcard."6.."Would find 600 to 699 or 66% since it is simply a wildcard

KEYWORD TABLE

KeywordVariableExampleNotes
TierAn Integer"Tier: 15"
RarityNormal, Magic, Rare, Unique"Rarity: Magic"
ClassQuarterstaves, Bows, Rings, Amulets, Jewels, Gloves, etc. etc. etc."Class: Gloves"seems to work like LootFilter classes
Item LevelAn Integer"Item Level: 75"Looking for an item level 70 to 79? Use the wildcard operator above and you get "Item Level: 7."

I'll update both of these tables as I learn about more. Thanks for coming to my TED Talk.

Comments

Grimmix_1

Wow thanks for information.

kopcap13491

"14)" also show t14 waystones and takes less characters

kingdweeb11

This is basically all the regex you can do in poe. You can do groups but they didnt work reliably for me

AsianSpicoli1

You can type "ilvl:" for item level

SquinkyEXE1

You're a hero

australianinlife1

Never knew search worked like this. Awesome

BlueShade01

You can also use “white” for normal “blue” for magic and “yellow” for rare (I’m assuming for last two)

FourMonthsEarly1

Amazing thank you!

Is there a req level command? Would love that for alts. 

Mysterious-Bad-12141

> Use words to match those words exactly (like "burn") or use keywords with a colon like "Tier: 14" or "Rarity: Normal" to match tiers or rarities etc. I'll update this as I discover more.

:\s# will find maps of any # tier as well; I think someone below pointed out that you can also use #) like 14) to find tiers.

:\s\+#\d\d% will find maps with at least "#-hundred" Waystone quantity bonus e.g., :\s\+5\d\d% will find all of your maps in the 500% range. You can use this for quantity and rarity as well like "2\d% increased quantity" will find all of your maps with 20-29% item quantity bonus, etc.

Similarly :\s\+\d+% will show all maps with any Waystone quantity bonus at all, which means all of your white maps and super low blues will be grayed out and easy to select for processing.

rkiga1

won't let me type it in reddit

Maybe it's a mobile / browser thing? |

most searches can be shortened, like

"d rar" for increased rarity
"y: r" for "Rarity: Rare"

Just pick a combination of letters that isn't common or you'll get false positives.

There's this site with more: https://poe2.re/


I've made my own to cram in as much into the 50 character limit as I can for checking new char merchants in SSF

"y: r|Add.+[4-9]\d p|[rt]or's|1\d\d% i|k sp|piri"
This is for physical weapons builds. Highlights all rares, or any magic item with: 40+ flat phys prefix, top 3 hybrid prefix, 100%+ to anything, atk speed, or spirit

"y: r|([89]\d|1\d\d).+(ncr|Man|gy)|piri|ills$|vem"
This is for archmage. Highlights any rare, or any magic item with: 80+ increased anything / mana / energy, spirit, +skills, or movement speed

TenchiSaWaDa1

Wait..... there's fcking regex for the search .Why the hell do they not even say this. WTF!!!!!

Drogatog1

Or just use this website that just let's you click on the stats you want to include/exclude and will figure it out the correct syntax for you https://poe2.re

mdnpascual1

any trick on how to search for 3 suffixes/prefixes on a map?

My use case is this: After filtering the bad maps "ailment|cooldown|burning", I need to know which one has 3 prefixes so I can try to vaal those maps for 1 more chance to convert them to a full prefix map.