kolton / d2bot-with-kolbot

d2bot game manager by D3STROY3R with kolbot libs by kolton for d2bs
344 stars 332 forks source link

Pickit code to craft/keep 3/4os Eth/Non eth armors #3164

Open grassfedpotato opened 2 years ago

grassfedpotato commented 2 years ago

[Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1 [Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4

I know that will work for that weapon, and I know how to replace 'Thresher' with whatever item I want to keep. But, what is the code to craft/keep non-eth/eth armor types?

chairrival commented 1 year ago

Here's what I use:

// Merc COH or Fortitude with Cube Roll Option, Godly
([name] == archonplate || [name] == krakenshell || [name] == hellforgeplate || [name] == lacqueredplate) && [quality] == normal && [flag] == ethereal # ([sockets] == 0 && [defense] >= 780) || ([sockets] == 4 && [defense] >= 1170) 

// Dusk Shroud Enigma with Cube Roll Option, Perf
[name] == duskshroud && [quality] == normal && [flag] != ethereal # ([sockets] == 3 || [sockets] == 0) && [defense] >= 467 # [maxquantity] == 1 

// Archon Plate Enigma with Cube Roll Option, Godly
[name] == archonplate && [quality] == normal && [flag] != ethereal # ([sockets] == 3 || [sockets] == 0) && [defense] >= 520 

For all armor types you could use [type] == armor instead of [name] == ...