-
Change vanilla block drop using special item (pickaxe)
I'm afraid of my mod will be incompatible with other mods.
-
Change vanilla block drop using special item (pickaxe)
Hey! I want to make pickaxe which you can dig glass and glass pane and you get glass or glass pane like Silk Touch enchantment. How to do that? I don't want to change BlockGlass.java. I want to do it also with gravel but i think it will be the same. Code: package Test.common; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.entity.EntityLiving; import net.minecraft.item.EnumToolMaterial; import net.minecraft.item.ItemPickaxe; import net.minecraft.item.ItemStack; import net.minecraft.world.World; import net.minecraftforge.common.IShearable; public class ItemWoolPickaxe extends ItemPickaxe { public ItemWoolPickaxe(int par1, EnumToolMaterial par2EnumToolMaterial) { super(par1, par2EnumToolMaterial); } public String getTextureFile() { return "/woolpickaxe.png"; } public boolean canHarvestBlock(Block par1Block) { return par1Block == Block.glass && par1Block == Block.thinGlass; } public float getStrVsBlock(ItemStack par1ItemStack, Block par2Block) { if(par2Block.blockID == Block.glass.blockID || par2Block.blockID == Block.thinGlass.blockID) { return 7F; } else return par2Block != null && (par2Block.blockMaterial == Material.iron || par2Block.blockMaterial == Material.rock) ? this.efficiencyOnProperMaterial : super.getStrVsBlock(par1ItemStack, par2Block); } }
-
Add enchantment to pickaxe
Can anyone help me?
-
Add enchantment to pickaxe
Kore thanks for help, but I added glass pane to the canHarvestBlock() other way. Code: I still don't know how to add enchantment (silk touch) to my pickaxe. Anyone know?
-
Add enchantment to pickaxe
Hi! I want to make pickaxe which you can dig glass and glass pane and you get glass or glass pane, like Silk Touch enchantment. ItemTestPickaxe.java file: package Test.common; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.item.EnumToolMaterial; import net.minecraft.item.ItemPickaxe; import net.minecraft.item.ItemStack; public class ItemTestPickaxe extends ItemPickaxe { public ItemTestPickaxe(int par1, EnumToolMaterial par2EnumToolMaterial) { super(par1, par2EnumToolMaterial); } public String getTextureFile() { return "/test.png"; } public boolean canHarvestBlock(Block par1Block) { return par1Block == Block.glass; //How can I add here glass pane? } public float getStrVsBlock(ItemStack par1ItemStack, Block par2Block) { if(par2Block.blockID == Block.glass.blockID) { return 8F; } else return par2Block != null && (par2Block.blockMaterial == Material.iron || par2Block.blockMaterial == Material.rock) ? this.efficiencyOnProperMaterial : super.getStrVsBlock(par1ItemStack, par2Block); } } 1. How can I add glass pane to block which this pickaxe can dig? 2. How can I add effect like Silk Touch, but not enchantment? If you don't know how to add effect like Silk Touch, it maybe Enchantment. Ehh... People will cheat using Enchanting Plus.
-
Explosives Tutorial
Yes. I want to make explosive block like TNT, but stronger.
-
Explosives Tutorial
Hey! I am looking for explosives tutorial but I can't find it. Is there any tutorial? Sorry for mistakes.
IPS spam blocked by CleanTalk.