• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

crafting time help

UbberN00ber

Refugee
im trying craft resources out of my forge faster but cant seem to get this to work in A18

<Config>

<append xpath="/items/item[@name=resourceScrapBrass]">

<property name="CraftingIngredientTime" value="0.05"/>

</append>

<append xpath="/items/item[@name=resourceRockSmall]">

<property name="CraftingIngredientTime" value="0.05"/>

</append>

<append xpath="/items/item[@name=resourceScrapLead]">

<property name="CraftingIngredientTime" value="0.05"/>

</append>

<append xpath="/items/item[@name=resourceClayLump]">

<property name="CraftingIngredientTime" value="0.05"/>

</append>

<append xpath="/items/item[@name=resourceScrapIron]">

<property name="CraftingIngredientTime" value="0.05"/>

</append>

</Config>
 
i cant get this to work

original xml

<recipe name="resourceClayLump" count="1" material_based="true" craft_area="forge" craft_time="1" craft_exp_gain="0" always_unlocked="true"><ingredient name="unit_clay" count="5"/>
my mod

<set xpath="/recipes/recipe[@name=resourceClayLump][@name=craft_time]/@value">0.25</set>
 
Back
Top