D2NT Pickit Sprache

04/24/2010 23:25 biggi21#1
[Name] == ChainGloves && [Quality] == unique && [Flag] != ethereal # [EnhancedDefense] >= 30 && [ItemMagicBonus] >= 40 // Chance Guards
was bedeutet # und && ?
04/24/2010 23:26 sternenlooper#2
&& = und
also groß && rund = groß und rund

# bedeutet !!!nach!!! dem identen! ob diese(r) wert(e) drauf sind
04/24/2010 23:27 Tablet#3
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)
[Only registered and activated users can see links. Click Here To Register...]
Da steht alles falls du noch mehr Fragen hast