Is there a way to unlock the weapon and armor recipes without doing the stage?
Printable View
Is there a way to unlock the weapon and armor recipes without doing the stage?
Try editing RecipeInfo table in heroesContents.db3. Just blanking all the entries under AppearQuestID and DisappearQuestID should work.
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.
I'll try both methods, thank you so much!