tkerwel wrote:can somebody explain this slowly and understandeble for an old man like me...
whats a shapeless recipe? whats the difference between a normal and a shapeless recipe.
when i heat "shapeless", i was thinking abt a non-cube based output in minetest and i thought this is not working within minetest.
Example:
1.Normal recipe (without "shapeless")
Mese tool:
{mese,mese,mese}'
{nothing,stick,nothing},
{nothing,stick,nothing},
To craft this one you must put mese and sticks
exactly in this shape. If you try put it like this(up side down):
{nothing,stick,nothing},
{nothing,stick,nothing},
{mese,mese,mese}'
It will not work.
2. Shapeless recipe
Mese tool:
{mese,mese,mese}'
{nothing,stick,nothing},
{nothing,stick,nothing},
For craft this tool with "shapeless" type craft, you must just put 3 mese and 2 sticks, no mater how, in what shape, that's why it was named "shapeless".
That was only example of "shapeless", because it should look like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
type = "shapeless",
output = 'mushrooms:mushroom_stew',
recipe = {
"mushrooms:bowl",
"mushrooms:mushroom_brown",
"mushrooms:mushroom_red",
},
As you see bowl can be under mushrooms ,between or on the side of them, components can by placed in horizontal, vertical or even oblique line, it is no mater in "shapeless".
Very similar to normal craft, but without curly brakes {} inside recipe section, which in normal craft means horizontal rows of recipe.