Jump to content

[1.8] For Each Item add a crafting recipe.


BadBoy6767

Recommended Posts

Hello everyone, i am creating a multiplier item that when registered/the constructor is called, it uses reflections to get all the fields that are an Item or extends Item and creates a shapeless recipe based off it.

I would post this in Stack Overflow but I do not think that they would understand since most of them probably to not create modifications in Forge.

Here is the constructor code:

public ItemMultiplier() {
	GameRegistry.registerItem(this, name);
	setUnlocalizedName(ItemsOStupidity.MODID + ":" + name);
	setCreativeTab(CreativeTabs.tabTools);
	Field[] items0 = Items.class.getFields();
	Field[] items1 = new Field[] {};
	for (Field f : items0) {
		if (f.getType() == Item.class
				|| f.getType().getSuperclass() == Item.class) {
			List<Field> items_list = new LinkedList<Field>(
					Arrays.asList(items1));
			items_list.add(f);
			items1 = items_list.toArray(new Field[items_list.size()]);
		}
	}
	for (Field f : items1) {
		try {
			Item i = (Item) f.get(this);
		} catch (IllegalArgumentException e) {
			e.printStackTrace();
		} catch (IllegalAccessException e) {
			e.printStackTrace();
		}
	}
}

I checked out and only a few items were working with my multiplier class.

What's the problem?

Link to comment
Share on other sites

Well, where do you add the recipes?

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

This is my code now:

public ItemMultiplier() {
	GameRegistry.registerItem(this, name);
	setUnlocalizedName(ItemsOStupidity.MODID + ":" + name);
	setCreativeTab(CreativeTabs.tabTools);
	while(Item.itemRegistry.iterator().hasNext()) {
		Item i = (Item) Item.itemRegistry.iterator().next();
		GameRegistry.addShapelessRecipe(new ItemStack(i, 2), this, i);
	}
}

But now i see the console stuck on this:

[23:09:06] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[23:09:06] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

and Minecraft has a black screen.

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.