idea to introduce <> greater/lower-than value search to inventory.
It would be a quality of life, time saving, and wonderful to introduce < > symbols to the search parameter.
Searching for values: <30 fire res, rarity of items, or whatever mod we want to search for? Doesn't have to those specific symbols, depending on what coding and/or other issues. Last bumped on Feb 13, 2025, 12:26:16 AM
|
![]() |
The regular expressions allows you to write something similar to this. I am not in game so i cannot really test it out but something like this should work fine for your case
most likely this should work fine "[3-5][0-9]\% to Fire Resistance" explanation the first [3-5] means the first character here is a number between and including 3-5 and [0-9] is for the second character. This allows basically to filter anything between 30-59 fire resistance. You can change numbers or wordings. I cant remember % was a reserved keyword or not. If it doesn't work, try to remove '\' in front of it. Last edited by Sevolak#2577 on Feb 12, 2025, 3:55:52 AM
|
![]() |
Maybe this regular expression work.
You can do a lot with these but it's not easy and it takes time. E.g. you can search for 5L or 6L. Would be nice a good QoL if u could save 10 or 20 of this expressions in a "search string stack". The biggest QoL would be if u can search in ALL your tabs at once. With >500 tabs (450 rmv-only) in std the inventory is not so interesting ... Last edited by Jerexil#5282 on Feb 12, 2025, 5:32:48 AM
|
![]() |
"[3-5][0-9]\% to Fire Resistance" This works! Awsome! I never knew all these years -.- Thanks buddy! |
![]() |