• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Recipe Modlet I created does not work

I am not sure what I am doing wrong I have created a few mods with no issue. 

However for some reason this simple recipes mod to add a few recipes will not work. 

When I go into the game and try to search the recipes I have created the recipes do not show up. 

Here is the XML

<configs>
    <append xpath="/recipes">
        <recipe name="drugPainkillers" count="1" craft_area="campfire" craft_tool="toolBeaker" tags="learnable">
            <ingredient name="resourceCropHopsFlower" count="4"/>
            <ingredient name="resourcePotassiumNitratePowder" count="3"/>
            <ingredient name="drinkJarBoiledWater" count="1"/>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="drugPainkillers" count="1" craft_area="chemistryStation" tags="learnable,chemStationCrafting">
            <ingredient name="resourceCropHopsFlower" count="1"/>
            <ingredient name="resourcePotassiumNitratePowder" count="1"/>
            <ingredient name="drinkJarBoiledWater" count="1"/>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="drugVitamins" count="1" craft_area="campfire" craft_tool="toolBeaker" tags="learnable">
            <ingredient name="foodCropBlueberries" count="4"/>
            <ingredient name="foodEgg" count="4"/>
            <ingredient name="resourceCrushedSand" count="4"/>
            <ingredient name="resourcePotassiumNitratePowder" count="3"/>
            <ingredient name="drinkJarBoiledWater" count="1"/>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="drugVitamins" count="1" craft_area="chemistryStation" tags="learnable,chemStationCrafting">
            <ingredient name="foodCropBlueberries" count="1"/>
            <ingredient name="foodEgg" count="1"/>
            <ingredient name="resourceCrushedSand" count="1"/>
            <ingredient name="resourcePotassiumNitratePowder" count="1"/>
            <ingredient name="drinkJarBoiledWater" count="1"/>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="resourceScrapBrass" count="1" material_based="true" craft_area="forge" is_trackable="false" tags="perkAdvancedEngineering">
            <ingredient name="unit_iron" count="10"/>
            <ingredient name="unit_clay" count="5"/>
            <ingredient name="unit_stone" count="5"/>
            <effect_group>
                <passive_effect name="CraftingIngredientCount" operation="perc_add" level="0,1,2,3,4" value=".25,.25,.25,.12,.06" tags="unit_clay,unit_iron,unit_stone"/>
            </effect_group>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="resourceAcid" count="1" craft_area="campfire" craft_tool="toolBeaker">
            <ingredient name="resourcePotassiumNitratePowder" count="50"/>
            <ingredient name="drinkJarBoiledWater" count="5"/>
        </recipe>
    </append>
    <append xpath="/recipes">
        <recipe name="resourceAcid" count="1" craft_area="chemistryStation" tags="chemStationCrafting">
            <ingredient name="resourcePotassiumNitratePowder" count="10"/>
            <ingredient name="drinkJarBoiledWater" count="1"/>
        </recipe>
    </append>
</configs>

 
Never mind I was able to figure it out. Although the name of my folder was different the name that I put into the Modinfo xml was the same as another mod. This is working correctly now.

 
Back
Top