kolton / d2bot-with-kolbot

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

Rerolling ethereal rares #1881

Open Zackkahry opened 5 years ago

Zackkahry commented 5 years ago

So I'm trying to re-roll an ethereal rare naga.

Config.Recipes.push([Recipe.Reroll.Rare, "Naga"]); // Reroll rare naga

using this, the bot went out and found a non-ethereal naga to roll instead of rolling the ehereal naga in my inventory. so I tried:

Config.Recipes.push([Recipe.Reroll.Rare, "Naga", Roll.Eth]); // Reroll rare naga

made sense to me, but didnt work lol

How can I specify that an item be ethereal for rerolling?

Kephren999 commented 5 years ago

It states it right there in the cubing section of your character config roll.eth roll.noneth. Or roll.all

Zackkahry commented 5 years ago

As i stated in my original post, my config currently says:

Config.Recipes.push([Recipe.Reroll.Rare, "Naga", Roll.Eth]); // Reroll rare naga

And the bot is continuing to roll non-eth only. Is this not formatted correctly? Am I missing something?