Jump to content

Fashi

Members
  • Posts

    7
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Fashi's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  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.
×
×
  • Create New...

Important Information

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