Jump to content

Have a crafting table check for special items


c-ab-o-o-s-e

Recommended Posts

I was wondering the best way to check if an item is in a slot that is part of a tileentity. I want it so that 4 tools are in 4 slots and only when they are there does the crafting table. I have done stuff like this before in using just the tileentity, so all I did was use getStackInSlot() to get the items. Won't it need to be static to be passed to the other class that handle crafting? If it's static though, then you wont be doing the proper override.

Link to comment
Share on other sites

You can make checks before the handler does its thing can't you? For example in your tile entity:

if (getStackInSlot(slot) == Items.item && getStackInSlot(slot1) == Items.item1 /* etc., etc., etc. */)
{
        // call to the the crafting handler stuff here.
}

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

Well actually thinking about it more. I think I'm going to adjust the ShapedRecipes and shapless to check for the items in the Tile entity slots. It will make it a lot more easier to work with in the long run since I want them to take damage according to recipes. I was thinking that I would just add the check onto the end of the methods that already does it and have it loop through or whatever. But I am unsure on how I would make a call like that to pass in the appropriate information. 

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.