Crafting

esyouele

Member
Is this code correct to enable crafting? Bot is picking up the items but not crafting anything.

Config.Cubing = true
Config.Recipes = {
--{ Recipe.Gem, "Flawless Amethyst" }, -- Make Perfect Amethyst
--{ Recipe.Gem, "Flawless Topaz" }, -- Make Perfect Topaz
--{ Recipe.Gem, "Flawless Sapphire" }, -- Make Perfect Sapphire
--{ Recipe.Gem, "Flawless Emerald" }, -- Make Perfect Emerald
--{ Recipe.Gem, "Flawless Ruby" }, -- Make Perfect Ruby
--{ Recipe.Gem, "Flawless Diamond" }, -- Make Perfect Diamond
--{ Recipe.Gem, "Flawless Skull" }, -- Make Perfect Skull

--{ Recipe.Token }, -- Make Token of Absolution

--{ Recipe.Rune, "Lem Rune" }, -- Upgrade Lem to Pul
{ Recipe.Rune, "Pul Rune" }, -- Upgrade Pul to Um
--{ Recipe.Rune, "Um Rune" }, -- Upgrade Um to Mal
--{ Recipe.Rune, "Mal Rune" }, -- Upgrade Mal to Ist
--{ Recipe.Rune, "Ist Rune" }, -- Upgrade Ist to Gul
--{ Recipe.Rune, "Gul Rune" }, -- Upgrade Gul to Vex

--{ Recipe.HitPower.Gloves, "Vambraces" }, -- Make HitPower Gloves using "Vambraces"
--{ Recipe.Blood.Helm, "Armet"}, -- Make Blood Helm for "Armet"
{ Recipe.Caster.Amulet }, -- Make Caster Amulet
{ Recipe.Caster.Ring }, -- Make Caster Ring

--{ Recipe.Socket.Weapon, "Thresher", Roll.Eth }, -- Make "Thresher" using ONLY "Eth"
}



Pick-it line:
// crafted amulets

[type] == amulet && [quality] == crafted # [fcr] >= 18 && [itemaddclassskills] >= 2
[type] == amulet && [quality] == crafted # [fcr] >= 18 && [itemaddclassskills] >= 2 && [fireresist]+[lightresist]+[coldresist]+[poisonresist] >= 70 && ([maxmana] >= 100 || [maxhp] >= 50 || [strength] >= 25 || [dexterity] >= 15)
[type] == amulet && [quality] == crafted # [fcr] >= 18 && [strength] >= 20 && [dexterity] >= 20
 

klptemp2

Member
Try uncommenting this line:
--{ Recipe.Gem, "Flawless Amethyst" }, -- Make Perfect Amethyst

so remove the -- at the beginning.

I think the bot should try to pick ingredients automatically, but in case it doesnt you should do this
 

esyouele

Member
Try uncommenting this line:
--{ Recipe.Gem, "Flawless Amethyst" }, -- Make Perfect Amethyst

so remove the -- at the beginning.

I think the bot should try to pick ingredients automatically, but in case it doesnt you should do this
It is picking up the ingredients but not crafting amulets/rings. It is combining upping runes though.
 

klptemp2

Member
You need comma after each line, and before the comments..

for example
Code:
{ "Recipe.Rune", "Thul Rune" }

needs comma at the end
Code:
{ "Recipe.Rune", "Thul Rune" },
Well to be more clear, it should be like this exactly without quotes around Recipe.Rune:
Code:
{ Recipe.Rune, "Thul Rune" },
 
Top