Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Fashi

Members
  • Joined

  • Last visited

  1. I'm afraid of my mod will be incompatible with other mods.
  2. 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); } }
  3. Can anyone help me?
  4. 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?
  5. 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.
  6. Yes. I want to make explosive block like TNT, but stronger.
  7. Hey! I am looking for explosives tutorial but I can't find it. Is there any tutorial? Sorry for mistakes.

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.