Quote:
>= means greater than or equal to
<= means less than or equal to
== means equal to
&& means and
!= means not. Example to keep only if the item is not ethereal - [Flag] != ethereal
|| means or. Example to keep an item if it has 10%FCR or 10%MF - [FCR] == 10 || [ItemMagicBonus] == 10
+ is used for adding item stats up to equal a certain amount, here is an example taken from a facet and will only keep the item if the 2 stats ADDED together are equal to or greater than 9 - [PassiveFireMastery]+[PassiveFirePierce] >= 9
( and ) are usually used in or statements, note that the brackets are not needed unless you are checking for another stat aswell, in the example if the orange wasn't there then you would not need brackets. Example to keep a Mage Plate that has 0 or 3 sockets without making 2 lines you do this - [Name] == MagePlate && [Quality] == superior && [Flag] != ethereal # [EnhancedDefense] >= 10 && ([Sockets] == 0 || [Sockets] == 3)
|

Da steht alles falls du noch mehr Fragen hast