Open Tektic opened 3 years ago
Can you upload to pastebin so I can download and compare.
its seems ur not working with the version from the repo. Pls use that. it should work
Its all working now? cool. i didn't know.
On Sat, Mar 27, 2021 at 5:55 AM Borega @.***> wrote:
its seems ur not working with the version from the repo. Pls use that. it should work
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Borega/pd2bs-scripts/issues/9#issuecomment-808704358, or unsubscribe https://github.com/notifications/unsubscribe-auth/ATMNX5RSQOUJ577YOIVWBWTTFWTSXANCNFSM4Z4GTZOQ .
Config.Recipes.push([Recipe.Socket.Armor, "Sacred Armor", Roll.Eth]); // Socket ethereal Sacred Armor
This does not work with new cubing file. You have it cubing things for you besides pgems and runes??
amulets and rings work fine. others are untested
Interesting. which rings work for you blood? nothing happens on my end with the new cubing.js file. do i need to update other files?
Caster Rings and Amu worked for me.
i'm getting a bit confused. do i copy paste the entire thing into my cubing.js? any links for a cubing.js file with these updates? sorry, i just can't even get rings and ammys to cube, keeps throwing error on console once bot gathers all ingredients
I've made a bunch of updates for the rune and gem stacks but still no luck with crafting. Maybe someone can see what im missing still? `/**
var Roll = { All: 0, Eth: 1, NonEth: 2 };
var Recipe = { Gem: 0, HitPower: { Helm: 1, Boots: 2, Gloves: 3, Belt: 4, Shield: 5, Body: 6, Amulet: 7, Ring: 8, Weapon: 9 }, Blood: { Helm: 10, Boots: 11, Gloves: 12, Belt: 13, Shield: 14, Body: 15, Amulet: 16, Ring: 17, Weapon: 18 }, Caster: { Helm: 19, Boots: 20, Gloves: 21, Belt: 22, Shield: 23, Body: 24, Amulet: 25, Ring: 26, Weapon: 27 }, Safety: { Helm: 28, Boots: 29, Gloves: 30, Belt: 31, Shield: 32, Body: 33, Amulet: 34, Ring: 35, Weapon: 36 }, Unique: { Weapon: { ToExceptional: 37, ToElite: 38 }, Armor: { ToExceptional: 39, ToElite: 40 } }, Rare: { Weapon: { ToExceptional: 41, ToElite: 42 }, Armor: { ToExceptional: 43, ToElite: 44 } }, Socket: { Shield: 45, Weapon: 46, Armor: 47, Helm: 48 }, Reroll: { Magic: 49, Rare: 50, HighRare: 51 }, Rune: 52, Token: 53, LowToNorm: { Armor: 54, Weapon: 55 } };
var Cubing = { recipes: [], gemList: [],
IngredientLoop: for (j = 0; j < this.recipes[i].Ingredients.length; j += 1) { // Loop thru recipe's ingredients for (k = 0; k < items.length; k += 1) { // Loop thru items if (((this.recipes[i].Ingredients[j] === "pgem" && this.gemList.indexOf(items[k].classid) > -1) || (this.recipes[i].Ingredients[j] === "cgem" && [557, 562, 567, 572, 577, 582, 597].indexOf(items[k].classid) > -1) || items[k].classid === this.recipes[i].Ingredients[j]) && this.validItem(items[k], this.recipes[i])) {
/ if (!recipe.Enabled && recipe.Ingredients [0] !== unit.classid && recipe.Ingredients[1] !== unit.classid) { return false; } / return true; }
};`