http://pastebin.com/1WrZ9v5T
Says it all.
If you can fix it, I will thank you.
minetest.register_craft({
output = 'metals:half_ingot 2',
type = "shapeless", <--------------------------Remove this line...
recipe = {
{'default:steel_ingot'},
}
})
minetest.register_craft({
output = 'default:steel_ingot',
type = "shapeless",<-------------------------------- ...and this one...
recipe = {
{'metals:half_ingot', 'metals:half_ingot'},
}
})sfan5 wrote:He wants shapeless Receipes
minetest.register_craft({
type = "shapeless",
output = 'metals:half_ingot 2',
recipe = {
"default:steel_ingot",
}
})
minetest.register_craft({
type = "shapeless",
output = 'default:steel_ingot',
recipe = {
"metals:half_ingot", "metals:half_ingot",
}
})
Recipe for register_craft (shapeless)
{
type = "shapeless",
output = 'mushrooms:mushroom_stew',
recipe = {
"mushrooms:bowl",
"mushrooms:mushroom_brown",
"mushrooms:mushroom_red",
},
replacements = <optional list of item pairs,
replace one input item with another item on crafting>
}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.
type = "shapeless",
output = 'mushrooms:mushroom_stew',
recipe = {
"mushrooms:bowl",
"mushrooms:mushroom_brown",
"mushrooms:mushroom_red",
},Users browsing this forum: No registered users and 8 guests