No, It's a bug =( Thank you. I will fix ituch I was using some crafted chests, but they all share the same inventory? Is this by design?
No, It's a bug =( Thank you. I will fix ituch I was using some crafted chests, but they all share the same inventory? Is this by design?
Skaldarnar. Sorry =(.
How do you determine/resolve the block-/itemnames in the recepies? I tried to use "oakTrunk" in one, but it does not seem to work properly (I also tried "oak Trunk", "engineakTrunk"). Maybe you can use the get BlockURI from the Commands class, as it is done for console commands!?
So, for the refinement you should to create the option "refinement". And then you should create "refinements recepies". For example:By the way, can you please give me a more detailed information on how to use the refinement part correctly?
"refinement":{
"coalore:coalore:4" : {
"instigator": "coalore",
"target": "coalore",
"resultCount" : "4"
},
"stone:coalore:2" : {
"instigator": "stone",
"target": "coalore",
"resultCount" : "2"
}
}
"refinement":[
{
"instigator": "coalore",
"target": "coalore",
"resultCount" : "4"
},
{
"instigator": "stone",
"target": "coalore",
"resultCount" : "2"
}
]
Yep, but you should create a new prefab for it. In the new version I have solved this problem =)Is it possible to assign more than one recipe to a block?
git clone https://github.com/Movingblocks/Terasology.wiki.git
git clone git@github.com:Movingblocks/Terasology.wiki.git
{
"CraftRecipe" : {
"type" : "EXTERNAL",
"result" : "engine:stone:engine:pillar",
"recipe" : {
bottom:
[
"", "stone", "",
"stone", "stone", "stone",
"", "stone", ""
],
"middle":
[
"", "stone", "",
"stone", "stone", "stone",
"", "stone", ""
],
"top":
[
"", "stone", "",
"stone", "stone", "stone",
"", "stone", ""
]
}
}
}
{
"CraftRecipe" : {
"type" : "EXTERNAL",
"result" : "engine:brick:engine:stair",
"recipe" : {
bottom:
[
"brick", "brick", "brick",
"brick", "brick", "brick",
"brick", "brick", "brick"
],
"middle":
[
" ", " ", " ",
"brick", "brick", "brick",
"brick", "brick", "brick"
],
"top":
[
" ", " ", " ",
" ", " ", " ",
"brick", "brick", "brick"
]
}
}
}