I'm try everything, but i can't do it! I know about the damage of the piston, but if i try the piston stay static.
You do know pocketpower has crafting recipoes? And everyone is saying to add sticcky pistons. Sy no. If you do i have byte on twitter and i will report it to him for taking credit for adding things to his mod. (The spelling mistakes are real). I hate why cant people just STOP making these mods. They get so many downloads and viewes for saying "ive added crafting recipies to pocketpower". They already exist. Then there are these noobs that dont know modding and are like "can you add sticky pistion". Most people who have made this mod, say yes. Which really annoyes me(i wish i could swear :/). Basically they are taking credit because alot of people think THEY are the creator of pocketpower...
You do know pocketpower has crafting recipoes? And everyone is saying to add sticcky pistons. Sy no. If you do i have byte on twitter and i will report it to him for taking credit for adding things to his mod. (The spelling mistakes are real). I hate why cant people just STOP making these mods. They get so many downloads and viewes for saying "ive added crafting recipies to pocketpower". They already exist. Then there are these noobs that dont know modding and are like "can you add sticky pistion". Most people who have made this mod, say yes. Which really annoyes me(i wish i could swear :/). Basically they are taking credit because alot of people think THEY are the creator of pocketpower...
Look man, pocket power doesn't have other crafting recipies and the other poeple that are saying bugs here is about the script not the addon so do not get mad at the poeple here
If anyone have a any idea to add to this ModPE Script, tell me in the comments!
Hello to all!! RedstoneCraft it's my first ModPE Script that adds Redstone recipes for survival and also redstone blocks like pistons to creative inventory. Sorry for my bad English.
You do know pocketpower has crafting recipoes? And everyone is saying to add sticcky pistons. Sy no. If you do i have byte on twitter and i will report it to him for taking credit for adding things to his mod. (The spelling mistakes are real). I hate why cant people just STOP making these mods. They get so many downloads and viewes for saying "ive added crafting recipies to pocketpower". They already exist. Then there are these noobs that dont know modding and are like "can you add sticky pistion". Most people who have made this mod, say yes. Which really annoyes me(i wish i could swear :/). Basically they are taking credit because alot of people think THEY are the creator of pocketpower...
First, I'm not taking any credit for the end of the post clearly put ALL the credits are for the creator of PocketPower.
Second, not all recipes in the original code PocketPower. I just added the missing are: The piston, RedstoneClock and Detector Rail.
So if you want you can report whatever you want, I do not care, I just give my contribution to the community.
thanks thanks thanks thanks thanks thanks thanks thanks thanks OMG OMG OMG OMG OMG LOL LOL LOL LOL LOL LOL I WILL SUBSCRIBE FOR YOUR YOUTUBE CHANELL YOU ARE COOL
Hi nick, can i report something?
You must know the Detector rail is crafted by 6 iron, a stone pressure plate, an a redstone.
And for crafting redstone block to redstone, you might using Item.addShapedRecipe in code of your script.
It should to Item.addCraftRecipe(331,9,0[152,1,0]);
OHH! Sorry for that, i will fix that. Thanks!
Fixed!! Beta 3 realeased! ;D
Nick, can i report a bug?
The report are in next post
You can see at the Redstone block recipes. It lost.
At the line 20, you can see Item.addShapedRecipe(331, 9, 0, [" ", " r ", " "], ["r", 152, 0]);
It should Item.addShapedRecipe(152, 1, 0, ["rrr", "rrr", "rrr"], ["r", 331, 0]);
And for Item.addCraftRecipe(331,9,0[152,1,0]);
It should to Item.addCraftRecipe(331,9,0,[152,1,0]);
I forget about the "," sign behind the "["
Nick, can you make piston pushing up/down?
The piston position is depends on damage
Fixed!! Sorry!
I'm try everything, but i can't do it!
I know about the damage of the piston, but if i try the piston stay static.
Nick, I have an idea.
Why not you make redstone block destroy faster?
You do know pocketpower has crafting recipoes? And everyone is saying to add sticcky pistons. Sy no. If you do i have byte on twitter and i will report it to him for taking credit for adding things to his mod. (The spelling mistakes are real). I hate why cant people just STOP making these mods. They get so many downloads and viewes for saying "ive added crafting recipies to pocketpower". They already exist. Then there are these noobs that dont know modding and are like "can you add sticky pistion". Most people who have made this mod, say yes. Which really annoyes me(i wish i could swear :/). Basically they are taking credit because alot of people think THEY are the creator of pocketpower...
Look man, pocket power doesn't have other crafting recipies and the other poeple that are saying bugs here is about the script not the addon so do not get mad at the poeple here
As you can see above I attached my post and finally said that all credits are for the creator of PocketPower.
First, I'm not taking any credit for the end of the post clearly put ALL the credits are for the creator of PocketPower.
Second, not all recipes in the original code PocketPower. I just added the missing are: The piston, RedstoneClock and Detector Rail.
So if you want you can report whatever you want, I do not care, I just give my contribution to the community.
function useItem(x,y,z,i,b,s){
if(getCarriedItem()==33){
if(s==0){
setTile(x,y-1,z,33,0);
}
if(s==1){
setTile(x,y+1,z,33,1);
}
}
}
On above it was a code to make piston can faced on all position. I get it from youtube
http://www.minecraftforum.net/forums/minecraft-pocket-edition/mcpe-mods-tools/2392501-all-position-of-piston-script-for-pocketpower-v1
That was my first mod to make piston can be placed on all position :-)
THANKS!! ADDED TO THE LINE!! PERFECT!!
EXCELENT!!
THANKS FOR COMMENT!!
Well, only Byteandahalf can add it, sorry about that.
He's Gonna Work Months And Month ...Where All Ready Excited Thats Why They FAil LOl
function useItem(x,y,z,i,b,s){
if(getCarriedItem()==33){
if(s==0){
setTile(x,y-1,z,33,0);
addItemInventory(33,-1,0);
}
if(s==1){
setTile(x,y+1,z,33,1);
addItemInventory(33,-1,0);
}
}
}
I re-fix bug from your mod in piston all sides. I ported it from my mod
I'm fixing many errors for v1.1 and trying to make the piston is not destroyed by lava or water.