I'm new here so ya, I'm going ro teach you how to make shaped crafting recipes!!!
in this tut, i'l be making a diamond sword with stone
First, we will use a new function introduced in BL 1.7: Item.addShapedRecipe
Explaning Must Read
So the parameters it takes are : Item.addShapedRecipe("item id of thing being crafted",quantity,damage["top row","middle row","bottom row"],["first letter",item id of first letter,item damge of 1st item,"second letter",item id of second letter,item damage of second item,so on so fourth]);
Dont worry about the parameters in the arrays, the parameters in the array with rows can use letters thats why I said in the second array,"first letter"
Also when assigning letters in the second array, the letters have to be different (You will see in the tut)
Second, we wanna assign the sword and we wanna assign letters to the crafting recipe rows
So it should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w "
]
Third we wanna assign the letter's item id
So it should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w ",
],["s",1,0,"w",280,0,]);
So finished product should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w ",
],["s",1,0,"w",280,0,]);
And it should look like this
So click the green button below and comment your questions and feedback!!!
Can someone help me figure out what I messed up in my code? Blocklauncher disapproves of line 10.
See what you did rough is that if you zoom in to your picture you will see at the end of all your numbers will see a 0 and there is a , after it but you put nothing after it SO remove the ,
in this tut, i'l be making a diamond sword with stone
First, we will use a new function introduced in BL 1.7: Item.addShapedRecipe
Explaning Must Read
Dont worry about the parameters in the arrays, the parameters in the array with rows can use letters thats why I said in the second array,"first letter"
Also when assigning letters in the second array, the letters have to be different (You will see in the tut)
Second, we wanna assign the sword and we wanna assign letters to the crafting recipe rows
So it should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w "
]
Third we wanna assign the letter's item id
So it should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w ",
],["s",1,0,"w",280,0,]);
So finished product should look like this
Item.addShapedRecipe(270,1,0[
" s ",
" s ",
" w ",
],["s",1,0,"w",280,0,]);
And it should look like this
Look in the thread of "How Dose Shaped Crafting Work" link: http://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-mods-tools/mcpe-mod-tool-help-requests/2186739-how-dose-shaped-crafting-work-plz-help
Can someone help me figure out what I messed up in my code? Blocklauncher disapproves of line 10.
See what you did rough is that if you zoom in to your picture you will see at the end of all your numbers will see a 0 and there is a , after it but you put nothing after it SO remove the ,
Ps if you need more help go to my website http://minecraftpemodding.clanwebsite.com