Page 1 of 1

can someone tell me if i can add :

PostPosted: Sun Oct 21, 2012 09:13
by sky
i want to add a crafting recipe for mossy cobble because in 0.4 they are deleted and imposibile to find so i want to make a crafting recipe with the default things. Any crafting ideas and how to make the init just give examples they are very useful for me

PostPosted: Sun Oct 21, 2012 09:56
by PilzAdam
1: Leaves+Cobble
init.lua:
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
minetest.register_craft({
    type = "shapeless",
    output = "default:mossycobble",
    recipe = {
        "default:cobble",
        "default:leaves",
    }
})

depends.txt:
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
default


2: Cobble+Moss from snow biome mod
init.lua:
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
minetest.register_craft({
    type = "shapeless",
    output = "default:mossycobble",
    recipe = {
        "default:cobble",
        "snow:moss",
    }
})

depends.txt:
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
default
snow