All resist in der pickit

01/07/2014 23:54 lukorn#1
Hey Leute!
Meines wissens nach gibt es keine Stat in D2NT für All resist. Wenn es das doch gibt, dann würde ich mich freuen wenn jemand es postet und es hat sich alles erledigt.

Falls es doch so funktionieren sollte wie ich denke habe ich ne Frage.

Ich möchte gerne ein Circlet behalten, dass folgende Stats hat:

[Type] == circlet && [Quality] == rare # [ItemAddClassSkills] >= 1 && [Strength]+[Dexterity] >= 20 && [AllResist] >= 10

meine spontane lösung wäre jetzt:
[FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 10

Aber ich befürchte, dass der bot dann zb auch einfach ein circlet aufheben würde, dass beispielsweise 5fireresi und 5coldresi hat, oder die maximale anzahl von 10 auf alle resis verteilt.

Sehe ich das richtig, oder ist meine Logik hier falsch?

SuFu hat nichts ausgespuckt, oder ich bin zu blöd.

Freue mich, wenn jemand helfen kann.

Edit: Oder reicht es das ganze in Klammern zu setzen und dann wird es als ein Stat angesehen? ([FireResist]+[LightResist]+[ColdResist]+[PoisonResist] >= 10)
Ist eigentlich unlogisch, aber ich hab zu wenig kenntnis hier rüber um tatsächlich zu wissen, wie die klammern sich dort auswirken.
01/08/2014 00:56 gtoilet#2
this might help you

[Type] == Circlet && [Quality] == rare # [PaladinSkills] == 2 && [FCR] == 20 && ([Dexterity] >= 15 || [MaxHp] >= 40 || [MaxMana] >= 60 || [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40)


here is a link to a LOD pickit file so you can maby find the right wording for future modifications you want to do to your NIP files

[Only registered and activated users can see links. Click Here To Register...]
01/08/2014 01:51 lukorn#3
I should have maybe posted this in English as well, coz i think you confused as to what i want. also i have the exact wording you posted in my first post already

[Type] == Circlet && [Quality] == rare # [PaladinSkills] == 2 && [FCR] == 20 && ([Dexterity] >= 15 || [MaxHp] >= 40 || [MaxMana] >= 60 || [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40)

[ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 40
the way i understand it, this line will look for resistances on a circlet that add up to 40
it could be 20light and 20fire or 10light 10fire 20poison and it would keep this circlet. this is not what i want tho

what i want is a line that lets me look for @resistances / toallresist
i wanna keep a circlet that has for example:
2ama
15str
17dex
19@
im not sure your code would pick that up


appreciate the link tho mate, been looking for some additions to my personal pickit file
but im good for wording

edit:

or would [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 80
equal 20@allresist?
01/08/2014 02:34 gtoilet#4
[Type] == Circlet && [Quality] == rare # [AmazonSkills] == 2 && [Dexterity] >= 17 && [Strength] >= 15 && [ColdResist]+[LightResist]+[FireResist]+[PoisonResist] >= 76

this should work for these requirements
2ama
15str
17dex
19@

as far as I know of the nip files there is yet to be a one word comment for prismatic resistance

here is another link to more LOD nip files

[Only registered and activated users can see links. Click Here To Register...]
01/08/2014 15:41 mirkoregge#5
allresi bekommst du auf 2 Arten: Addierung der Einzelresi oder durch Angabe der einzelnen Resi

10@=
Code:
[fireresist]+[lightresist]+[coldresist]+[poisonresist] >= 40
oder
Code:
[fireresist] >= 10 && [lightresist] >= 10 && [coldresist] >= 10 && [posionresist] >= 10
sinnvoller wäre die erste Variante