can someone tell me if i can add :

sky
Member
 
Posts: 152
Joined: Tue Oct 16, 2012 11:59

can someone tell me if i can add :

by sky » Sun Oct 21, 2012 09:13

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
Last edited by sky on Sun Oct 21, 2012 09:14, edited 1 time in total.
 

User avatar
PilzAdam
Member
 
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam

by PilzAdam » Sun Oct 21, 2012 09:56

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
 


Return to WIP Mods

Who is online

Users browsing this forum: No registered users and 7 guests

cron