Well, in 6 months, you're my first customer to actually ask for this, and yes, it's available
Code:
item.InventorySquaresValue
it returns the exact square value of the item, that means an amulet will return 1. a 2H Axe will return 8. I'm literally crying while writing this, because it's so powerful
I made custom rules to allow people to have VERY VERY VERY accurate rules in a simple text writing, no boxes, just logical stuff. You can still use Default ItemFilter plugin, it's working but it's also a bit more painful to understand how Affixes searching works, using AIF is not an obligation
But for the sake of having almost no interferences between those 2, I decided to keep CustomRules Isolated from ItemFilter, sometimes rules can get mixed up and you get a shitty result.
To be honest, learning CustomRules isn't hard, you just have to :
- Think about what you want
- Write it at the same time.
And suddenly, everything goes clear
Like "I want to keep the unique voll's protector but only with 4 links and more" which would result in
Code:
item.IsUnique and item.FullName == "Voll's Protector" and item.Links >= 4
people have been creating really strong rules recently, and I'm glad I didnt gave up when trying to figure things out !