How would I edit this to make the elevator block have a chiseled quartz texture?
Change this line of code
Block.defineBlock(222,"Elevator Block","wool",20,1,0);
to
Block.defineBlock(222,"Elevator Block","[quartz_block,5]",20,1,0);
and you'll get the texture of a chiseled quartz block
Rollback Post to RevisionRollBack
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
Made a little mistake, it needs to be:
Block.defineBlock(222,"Elevator Block",["quartz_block",5],20,1,0);
(the " need to be around quartz_block and not around [...])
That should work.
Rollback Post to RevisionRollBack
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
As long as you give me credits for the the mod
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
Yes
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
Change this line of code
Block.defineBlock(222,"Elevator Block","wool",20,1,0);
to
Block.defineBlock(222,"Elevator Block","[quartz_block,5]",20,1,0);
and you'll get the texture of a chiseled quartz block
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
Made a little mistake, it needs to be:
Block.defineBlock(222,"Elevator Block",["quartz_block",5],20,1,0);
(the " need to be around quartz_block and not around [...])
That should work.
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
If you give credit and link to this forum post on the post of the modpack
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io
Click the 'here' hyperlink in my signature V
Check out all my other Minecraft PE scripts and the permissions on my site: wilco375.github.io