JieGuan PickIt .NIP Guide

The Horadric Cube

Administrator
Staff member
== means equals

!= means does not equal

>= means greater than or equal to

<= means less than or equal to

&& means AND

|| means OR

// means ignore - anything after // will be ignored



example:
>= normal will match normal, superior, magic, rare, set, unique, and crafted :cool:

use ([quality] >= normal && [quality] <= superior) for all valid bases

if // comes before [MaxQuantity] then it is ignored

Guide: https://github.com/JieGuanD2RBot/pickits/blob/master/NipGuide.md


Item name/stat/type/flags: https://github.com/JieGuanD2RBot/kolbot/blob/master/d2bs/kolbot/libs/NTItemAlias.dbl

Legacy nip flags that do not work with Jieguan:

MaxQuantity - not implemented. Any line with this in it will be fully ignored.

Level - not possible. D2R does not store ilvl in the client and it cannot be read by the bot. Always evaluates true.
 
Top