Please help me with crafting.

iomega12

New member
My bot is not crafting eth weapons or armors to try to get the correct sockets. This is what my script looks like:

{ Recipe.Socket.Weapon, "Thresher", Roll.Eth }, -- Make "Thresher" using ONLY "Eth"
{ Recipe.Socket.Weapon, "CrypticAxe", Roll.Eth },
{ Recipe.Socket.Armor, "ArchonPlate", Roll.Eth },
{ Recipe.Socket.Armor, "GreatHauberk", Roll.Eth },
{ Recipe.Socket.Armor, "wirefleece", Roll.Eth },
{ Recipe.Socket.Armor, "DuskShroud", Roll.Eth },
{ Recipe.Socket.Armor, "scarabhusk", Roll.Eth },
{ Recipe.Socket.Armor, "wyrmhide", Roll.Eth },

}

What do I need to put in my pickit for each of these items?
 

NukePunch

Member
make sure you have those items are listed on your Pickit file.
I have thrown away my Amulets in the first 2 days because I didn't have them on my Pickit lol
 

iomega12

New member
This is what is in my pickit:

[Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == CrypticAxe && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == CrypticAxe && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == GreatHauberk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == GreatHauberk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == DuskShroud && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == DuskShroud && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == WireFleece && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == WireFleece && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == ScarabHusk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == ScarabHusk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == WyrmHide && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == WyrmHide && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
 

NukePunch

Member
This is what is in my pickit:

[Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == Thresher && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == CrypticAxe && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == CrypticAxe && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == GreatHauberk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == GreatHauberk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == DuskShroud && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == DuskShroud && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == WireFleece && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == WireFleece && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == ScarabHusk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == ScarabHusk && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
[Name] == WyrmHide && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 0 # [MaxQuantity] == 1
[Name] == WyrmHide && [Quality] == Normal && [Flag] == Ethereal # [Sockets] == 4
so did you monitor your bot does not do cubing? or it does do cubing but not keepit?
 

iomega12

New member
so did you monitor your bot does not do cubing? or it does do cubing but not keepit?
I am not sure. Since these items arent too common, I am not gonna sit here for hours to monitor it. It doesn't even pick up mats tho.

I know it will say in the log "kept x for cooking". There's none of that in the logs.
 

NukePunch

Member
I am not sure. Since these items arent too common, I am not gonna sit here for hours to monitor it. It doesn't even pick up mats tho.

I know it will say in the log "kept x for cooking". There's none of that in the logs.
It kepts for cooking when you have meterial first i think.
When you dont have item it doesn’t i think
Delete eth part and try it will be easier to pick it and cooking
 
Top