Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

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

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.