Jump to content

Recommended Posts

Posted

You need a class that extends Container, another class that extends Slot, a CraftingManager class (do not extend CraftingManager), a 4th class which extends GuiContainer, a GuiHandler which extends IGuiHandler and 2 final class which extends IRecipe, one for ShapedRecipe and the other for ShapelessRecipe. You will also need a class to handle your recipes. If you are going for the 3 by 3  like the vanilla's crafting table, you can copy the vanilla's classes, SlotCrafting, GuiCrafting, ContainerWorkbench, CraftingManager, ShapedRecipes and ShapelessRecipes.

You can find these classes in the following folders, minecraft/item/crafting, minecraft/inventory and minecraft/client/gui/inventory

 

To call for the Gui when the block is activated,

@Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float x, float y, float z)
{
if (!world.isRemote && !player.isSneaking())
{
	player.openGui(Main.instance, 0, world, pos.getX(), pos.getY(), pos.getZ());
	return true;
}
return false;
}

Remember to register the GuiHandler in the init method of your main class. To register, NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler());

To you can create an instance of your main class with this

@Instance(Reference.MOD_ID)
public static Main instance;

width=620 height=260http://www.startrek.com/uploads/assets/articles/61c89a9d73c284bda486afaeaf01cdb27180359b.jpg[/img]

Till next time. Thank you for delivering funny scenes to Star Trek as Chekov :) . Will always remember you

Posted

Technically speaking, you don't have to get that complex.  Its only if you want to be able to have 3x3 crafting bench recipes.

If your goal is to turn a "N-stack of Foo" into a "Y-stack of Bar" you can get away with a lot less.

Container

Slot

GuiContainer

IGuiHandler

CraftingManager (this is just a class that stores the hashmap of ingredients -> results, allows you to add recipes and get recipe results).

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.

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.