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

Forge speed.

Cashean

New member
It takes way to long to melt stuff into the forge. Anyway of speeding it up. I have to run 5 forges right now which make for a great screamer magnet.

 
You can add craft time i think.

<recipe name="what ever" count="1" craft_area="whatever" craft_time="60" >

 
Last edited by a moderator:
MeltTimePerUnit = time it takes to melt iron, it depends on how fast you want it to melt. 0.25 is default 0.12 is half that time

CraftingIngredientTime = how long it takes to craft anything that uses melted iron in the forge, this is per ingredient/unit so anything that needs 20 units of iron by default should take 10 seconds to craft in the forge

Code:
<item name="unit_iron">
   <property name="HoldType" value="45"/>
   <property name="Meshfile" value="Items/Misc/sackPrefab"/>
   <property name="DropMeshfile" value="Items/Misc/sack_droppedPrefab"/>
   <property name="CustomIcon" value="resourceScrapIron"/>
   <property name="Material" value="Mmetal"/>
   <property name="Stacknumber" value="30000"/>
   <property name="Weight" value="1"/>
   <property name="Group" value="Resources"/>
   <property name="ResourceUnit" value="true"/>
   [color=#ff0000]<property name="MeltTimePerUnit" value="0.25"/>[/color]
   <property name="UserHidden" value="true"/>
   [color=#ff0000]<property name="CraftingIngredientTime" value="0.5"/>[/color]
   <property name="CreativeMode" value="None"/>
</item>
 
MeltTimePerUnit = time it takes to melt iron, it depends on how fast you want it to melt. 0.25 is default 0.12 is half that timeCraftingIngredientTime = how long it takes to craft anything that uses melted iron in the forge, this is per ingredient/unit so anything that needs 20 units of iron by default should take 10 seconds to craft in the forge

Code:
<item name="unit_iron">
   <property name="HoldType" value="45"/>
   <property name="Meshfile" value="Items/Misc/sackPrefab"/>
   <property name="DropMeshfile" value="Items/Misc/sack_droppedPrefab"/>
   <property name="CustomIcon" value="resourceScrapIron"/>
   <property name="Material" value="Mmetal"/>
   <property name="Stacknumber" value="30000"/>
   <property name="Weight" value="1"/>
   <property name="Group" value="Resources"/>
   <property name="ResourceUnit" value="true"/>
   [color=#ff0000]<property name="MeltTimePerUnit" value="0.25"/>[/color]
   <property name="UserHidden" value="true"/>
   [color=#ff0000]<property name="CraftingIngredientTime" value="0.5"/>[/color]
   <property name="CreativeMode" value="None"/>
</item>
which file is that?

 
This is a modlet, just put it into your Mods folder. Note it is set to default melt speed, you will need to open items.xml and adjust it to your needs. Notes are included at the top of the file to hopefully help.

Download

 
This is a modlet, just put it into your Mods folder. Note it is set to default melt speed, you will need to open items.xml and adjust it to your needs. Notes are included at the top of the file to hopefully help.
Download
Hello, do you know why the mod does not work? I change the values ​​but it keeps burning and crafting at the same speed, a greeting.

 
in the recipes.xml you need to change this too

Code:
<recipe name="resourceScrapIron" count="1" craft_area="forge" material_based="true" craft_time="[color="#FF0000"]1[/color]" craft_exp_gain="0" always_unlocked="true">
<ingredient name="unit_iron" count="1"/>
</recipe>
Setting this to a decimal will make things go way fast... I believe this is actually a multiplier based on the MTPU and CIT fields. Either way, unless you change recipes.xml too it won't work.

 
Back
Top