Question about pickit

Few question about pickit and how it works.

After looking into Pickit and kolton.nip where it seems all items are listed. Are all those items set to “Perfect roll” for exmple
[name] == amulet && [quality] == unique # [strength] == 5 && [fireresist] >= 30 // mara

Does this mean it will only keep it if it rolls 30@res ? and if i put it at >= 20 // mara it keeps all of em no whatever what the res is ? If i understand it right?

Also is there a other pickit kolton.nip that keeps abit lower rolld items aswell or just perfect one?

Here is another exmple about jewel’s
[Name] == jewel && [quality] == magic # ([fireresist] == 20 || [coldresist] == 20 || [lightresist] == 20 || [fireresist] >= 10 && [lightresist] >= 10 || [maxmana] == 10) && ([maxhp] == 10 || [fhr] == 5 || [ias] == 10 || [itemreqpercent] <= -10 || [strength] >= 5 || [dexterity] >= 5)

If i lower the stats, it will still pick those up and keep em ? or do i need to add another line to the list ?

Sorry for asking “stupid” question, im just so new to all this lol :stuck_out_tongue:

yeah, some the default lines from kolton.nip have high/perfect stats requirements.
… [fireresist] >= 20 means that will keep any mara’s amulet with minimum 20 all res.

you should notice the operators and the brackets in the evaluation of conditions to keep an item. lower requirements will help you to not miss an item, but also could increase the number of the low item kept.

all things are explained in detail on NipGuide.

Thanks, i’ll try to lower some of those stats and see if it works haha