Jump to content

Damaging an item after using in crafting


Jeerdus

Recommended Posts

I have got the item I need to damage after using in a crafting table:

package elementum;

import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.Icon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class ItemForgingHammer extends Item
{
    private ItemStack emptyItem = null;

public ItemForgingHammer(int id) {
	super(id);
	maxStackSize = 1;
	setMaxDamage(31);
}

@Override
    public boolean hasContainerItem() {
            return true;
    }

    public void setEmptyItem(ItemStack ei) {
            this.emptyItem = ei;
    }

    public boolean doesContainerItemLeaveCraftingGrid(ItemStack par1ItemStack) {
            return false;
    }

    @Override
    public ItemStack getContainerItemStack(ItemStack stack) {
            int dmg = stack.getItemDamage();
            if (dmg == 32) {
                    return new ItemStack(stack.getItem(), 0, 32);
            }
            ItemStack tr = copyStack(stack, 1);
            tr.setItemDamage(dmg + 2);
            return tr;
    }

    public static ItemStack copyStack(ItemStack stack, int n) {
            return new ItemStack(stack.itemID, n, stack.getItemDamage());
    }

@SideOnly(Side.CLIENT)
public void registerIcons(IconRegister par1IconRegister)
{
	this.itemIcon = par1IconRegister.registerIcon(Elementum.modid + ":" + this.getUnlocalizedName().substring(5));
}

}

 

Here's the crafting recpie:

GameRegistry.addRecipe(new ItemStack(ironPlate), new Object[]{
            "X","Y", 'X', new ItemStack(Elementum.forgingHammer,1,-1), 'Y', Item.ingotIron
     });

The problem is that it doesn't want to craft after it's been used only once.

Link to comment
Share on other sites

Probably because your crafting recipe is set to only use the undamaged item.

(Edit: I don't know how the OreDictionary.WILDCARD_VALUE is intended to work with recipes like this, tbh)

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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