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

Concrete mix crafting time decreasing how?

archimp

New member
i havent got working decreasing this.. i added <property name="CraftingIngredientTime" value="0.01"/> to that item in items.xml but it seems not do anything effect on that.

and i havent got working smelttime neither.. i edited that line whats in items.xml but no effect.. or do i need to add that line every item?

cement smees craft faster on forge..dunno why its not affect all items?

 
look at this code of one of my modlets, i guess you see soon what i mean

Code:
		<recipe name="casinoCoin" count="1000" craft_time = "1" craft_exp_gain="0" >
		<ingredient name="+GoldenCoin" count="1"/>
	</recipe>
	<recipe name="+GoldenCoin" count="1" craft_time = "1" craft_exp_gain="0" >
		<ingredient name="casinoCoin" count="1000"/>
	</recipe>
 
look at this code of one of my modlets, i guess you see soon what i mean
Code:
		<recipe name="casinoCoin" count="1000" craft_time = "1" craft_exp_gain="0" >
		<ingredient name="+GoldenCoin" count="1"/>
	</recipe>
	<recipe name="+GoldenCoin" count="1" craft_time = "1" craft_exp_gain="0" >
		<ingredient name="casinoCoin" count="1000"/>
	</recipe>
so i add and replace that goldencoin with concretemix in items.xml?

 
The craftingingredienttime property applies to the ingredient in a recipe, so if you want to make concretemix faster, apply it to cement or rockSmall or crushedsand in items.xml.

Or just bypass it and put a specific craft_time on the recipe as Royal is suggesting in the recipes.xml.

The melt time property applies to resources melted into the forge. Again apply it on scrapiron or rockSmall etc in items.xml.

 
The craftingingredienttime property applies to the ingredient in a recipe, so if you want to make concretemix faster, apply it to cement or rockSmall or crushedsand in items.xml.Or just bypass it and put a specific craft_time on the recipe as Royal is suggesting in the recipes.xml.

The melt time property applies to resources melted into the forge. Again apply it on scrapiron or rockSmall etc in items.xml.
well havent got it work still...

i add that crafting bla bla on cement and its till same time make concretemix

 
add

Code:
craft_time = "0.1"
or

Code:
craft_time = "0.01"
to the recipe and test it again

I guess one second per mix is not so far from the vanilla value

if it dont work

x 10 the ingrediens and

x 10 the result

(together with a fixed crafttimer) it would end in a 10 times faster crafting

 
Last edited by a moderator:
Back
Top