0 Members and 2 Guests are viewing this topic.
I just noticed a crafting conflict in alpha 8.1 between barnwood and redwoodplank. They have the same recipe. Here is how to fix.Go to Steam\steamapps\common\7 Days To Die\Data\Config and edit the recipes.xml with metapad or something similar. Find the section for barnwood. It should look something like this.Code: [Select] <recipe name="barnWood" count="8" scrapable="False" craft_time="5" > <ingredient name="woodPlank" count="1" grid="-1, -1"/> <ingredient name="woodPlank" count="1" grid="0, -1"/> <ingredient name="woodPlank" count="1" grid="1, -1"/> <ingredient name="woodPlank" count="1" grid="-1, 0"/> <ingredient name="plantChrysanthemum" count="1" grid="0, 0"/> <ingredient name="woodPlank" count="1" grid="1, 0"/> <ingredient name="woodPlank" count="1" grid="-1, 1"/> <ingredient name="woodPlank" count="1" grid="0, 1"/> <ingredient name="woodPlank" count="1" grid="1, 1"/> </recipe>Change it to this.Code: [Select] <recipe name="barnWood" count="4" scrapable="False" craft_time="5" > <ingredient name="woodPlank" count="1" grid="0, -1"/> <ingredient name="woodPlank" count="1" grid="-1, 0"/> <ingredient name="plantChrysanthemum" count="1" grid="0, 0"/> <ingredient name="woodPlank" count="1" grid="1, 0"/> <ingredient name="woodPlank" count="1" grid="0, 1"/> </recipe>If your already in game while making this change, you will have to exit the game and relaunch it for the change to take effect.I have attached my fixed recipes.xml incase you can't do it yourself.
<recipe name="barnWood" count="8" scrapable="False" craft_time="5" > <ingredient name="woodPlank" count="1" grid="-1, -1"/> <ingredient name="woodPlank" count="1" grid="0, -1"/> <ingredient name="woodPlank" count="1" grid="1, -1"/> <ingredient name="woodPlank" count="1" grid="-1, 0"/> <ingredient name="plantChrysanthemum" count="1" grid="0, 0"/> <ingredient name="woodPlank" count="1" grid="1, 0"/> <ingredient name="woodPlank" count="1" grid="-1, 1"/> <ingredient name="woodPlank" count="1" grid="0, 1"/> <ingredient name="woodPlank" count="1" grid="1, 1"/> </recipe>
<recipe name="barnWood" count="4" scrapable="False" craft_time="5" > <ingredient name="woodPlank" count="1" grid="0, -1"/> <ingredient name="woodPlank" count="1" grid="-1, 0"/> <ingredient name="plantChrysanthemum" count="1" grid="0, 0"/> <ingredient name="woodPlank" count="1" grid="1, 0"/> <ingredient name="woodPlank" count="1" grid="0, 1"/> </recipe>