Jump to content

Selectively remove recipe


Tslat

Recommended Posts

Just wondering if anyone knows/has any ideas on how one would be able to selectively remove a crafting recipe, either per player, or per permission or something.

 

It may not even be possible, I just couldn't come up with anything in the first few moments before I 'm leaving for bed.

 

This is all spawning from the inability to track when people craft, and therefore inability to limit what people can craft.

Link to comment
Share on other sites

This does get tricky, since crafting benches are a shared block and many players can craft in it at once. It makes sense then to use the SlotCrafting instance, since that is the one slot that each player gets his own distinct copy of. I have yet to try this, but having several people try to craft the same item at once would only give it to the first player who clicked that output slot, right?

Link to comment
Share on other sites

  • 2 weeks later...

removing recipes is easy

CraftingManager.getInstance().getRecipeList().clear();

oops no recipes

 

however this isnt what you want to do,

 

first copy all the recipes into your own list , then clear the origonal

create and add your own IRecipe that checks against the recipes in your list and also check other conditions

 

if you want to only control specific recipes you can selectively remove them instead of clearing the whole list

however some recipes dont give an output correctly until the input is set with matches() (fireworks is an example, leather armor coloring is another)

 

the really complex part is trying to keep server-side and client-side in sync with one another

 

 

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.