-
Apprentice
Unlocking weap/armor recipes
Is there a way to unlock the weapon and armor recipes without doing the stage?
-
-
Member
Re: Unlocking weap/armor recipes
Try editing RecipeInfo table in heroesContents.db3. Just blanking all the entries under AppearQuestID and DisappearQuestID should work.
-
Valued Member
Re: Unlocking weap/armor recipes
You can also execute this query on both db3:
UPDATE ManufactureRecipeInfo SET ManufactureID = 'armor',ExperienceRequired = 0,GradeRequired = 0;
DELETE FROM ManufactureMaterialInfo;
INSERT INTO ManufactureMaterialInfo
SELECT RecipeID,'gold',1,1 FROM ManufactureRecipeInfo;
INSERT INTO ManufactureMaterialInfo
SELECT RecipeID,RecipeID,1,0 FROM ManufactureRecipeInfo;
Then chose armorsmithing crafting in game. This will make everything craftable for 1 gold and with 10 seconds of waiting.
-
Apprentice
Re: Unlocking weap/armor recipes
I'll try both methods, thank you so much!