Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
(`` backticks denote what should be typed into the search but they themselves should not be typed)
By item level: `ilvl:N` (no space between colon and the rest)
(for example: `ilvl:10` matches items with ilevel exactly 10, regular expression is needed to match a range, e.g. to match items with ilvl between 10 and 29 inclusive:)
By attributes: `str: N` `dex: N` or `int: N`
However, these don't seem to be properties like "ilvl", thus the space between the attribute's colon and anything that follows also needs to be matched with a regex. Whitespace is matched with a `\s` or quote the whole search.
(e.g. `dex:\s30` or `"dex: 30"` highlights items that have dex requirement exactly 30)
Regular expressions can be used to search for a range.
(e.g. to match a range of items with dex requirement e.g. between 10 and 29 inclusive:)
By required character level: `level: N` (need to use regex whitespace \s)
(for example, to match items below some level, you need to craft a regular expression. This matches items that a level 29 character can use:)
Similarly, it seems it is possible to match by:
- `armour: N`
- `evasion rating: N`
- `energy shield: N`
- `quality: +N` (space and plus sign need to be matched with `\s` and `\+`, possibly also `\%` to match the percent sign after N)
By any stats or texts in item's tooltip, e.g. `maximum mana` highlights items that have +N to maximum mana.
To find items that give 28-99 mana, a regex can be used to match the text:
Click web page, click download, copy file, select file under options in game.
Now, just go enjoy the game. ;-)
I think you are posting out of place here, this thread is for people who are interested in regex and search functions.
Please go enjoy the game yourself instead of injecting your useless comments in places they aren't wanted
All i could find is: "\b[1-5] exal" - but it works only under 9 digits price, cant get it to work for searches like "10-20", "20-40" and so on.
it feel a bit inconvenience but you can try "\b (\d|[1-9]\d|) ex" mixed between \d and [] range