["condition"] = {
["ItemCount(x) < 9990"] = true;
["ItemCount(y) < 9990"] = true;
};
all conditions need to be true or it wont work
so if
9920 shards = true
9998 crystals = false
not valid.
["(ItemCount(x) < 9980) and (ItemCount(y) < 9980)"] = true;
both need to be true but its just the one line
9920 shards and 9998 crystals = false
not valid
["ItemCount(x) < 9990"] = true;
["ItemCount(y) < 9990"] = true;
};
all conditions need to be true or it wont work
so if
9920 shards = true
9998 crystals = false
not valid.
["(ItemCount(x) < 9980) and (ItemCount(y) < 9980)"] = true;
both need to be true but its just the one line
9920 shards and 9998 crystals = false
not valid