This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
How can i make that e.g. a diamond pickaxe mine custom blocks faster?
function modTick() { if (Player.getCarriedItem()==/*Pickaxe Id*/&&Player.getPointedBlockId()==/*Block Id*/){ Block.setDestroyTime(/*Block Id*/, /*How fast or slow you want block to break*/) } }
How can i make that e.g. a diamond pickaxe mine custom blocks faster?
function modTick()
{
if (Player.getCarriedItem()==/*Pickaxe Id*/&&Player.getPointedBlockId()==/*Block Id*/){
Block.setDestroyTime(/*Block Id*/, /*How fast or slow you want block to break*/)
}
}