Jump to content

Concrete mix crafting time decreasing how?


archimp

Recommended Posts

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?

Link to comment
Share on other sites

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

		<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>

Link to comment
Share on other sites

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

		<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?

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...