Quote Originally Posted by Romowens01 View Post
One suggestion that I saw.. On the gear filter, when filtering by stats can you change it to be a and/or situation? Basically I was searching to find crafting gear. I put Control, Craftmanship and Magic Craft as filter options, it only brought up 1 item that had all 3. Would be cool to be able to filter on an OR statement instead of just an AND statement.
AND OR queries are hard to represent easily through a GUI due to order of operation ambiguity. Is the query [int > 10 AND mnd > 5 OR macc > 12] actually [(int > 10 AND mnd > 5) OR macc > 12] or is it [int > 10 AND (mnd > 5 OR macc > 12)]?

That being said, this would indeed be very useful. Either give us order of operation operators or force a simple front to back precedence and I would be behind this suggestion 100%.