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

Posted

Hello. I am trying to create a recipe that uses an ore dictionary entry, but I keep getting "Null pointer exception" on the recipe definition

 

GameRegistry.addRecipe( new ItemStack( ModItems.itemWheelHub ), new Object[]
						{ "SWS",
						  "WIW",
						  "SWS",
							'S', Items.stick,
							'W', "woodPlank",
							'I', Items.iron_ingot } );

 

Everywhere I look tells me that this is the correct way of using the ore dictionary, but it doesn't seem to be working. If I replace "woodPlank" with Blocks.planks, it will compile and run fine. Doing a debug trace, it looks to me as if the CraftingManager does not recognise a string as a valid entry.

 

Is this correct or can somebody help me please?

 

Using Forge 1.8-11.14.3.1486

My bet is that ModItems.itemWheelHub is not defined (i.e. null)

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.

Hi

 

Perhaps try a two step method like this

 

// g) Shaped Ore recipe - any type of tree leaves arranged around sticks makes a sapling
    //    Ores are a way for mods to add blocks & items which are equivalent to vanilla blocks for crafting
    //    For example - an ore recipe which uses "logWood" will accept a log of spruce, oak, birch, pine, etc.
    //    If your mod registers its balsawood log using  OreDictionary.registerOre("logWood", BalsaWood), then your
    //    BalsaWood log will also be accepted in the recipe.
    IRecipe saplingRecipe = new ShapedOreRecipe(new ItemStack(Blocks.sapling), new Object[] {
            "LLL",
            "LSL",
            ".S.",
            'S', Items.stick,   // can use ordinary items, blocks, itemstacks in ShapedOreRecipe
            'L', "treeLeaves",  // look in OreDictionary for vanilla definitions
    });
    GameRegistry.addRecipe(saplingRecipe);

 

If that doesn't work, keep breaking it into smaller pieces

eg ItemStack saplingStack = new ItemStack(Blocks.sapling)

etc

perhaps stepping in with the debugger will help too

 

This is running in init not preInit, yes?

 

-TGG

I think your woodPlank should be plankWood.  This is what I have for ore dictionary recipe in my 1.8 mod.

 

		for(ItemStack s : OreDictionary.getOres("plankWood"))
	{
		GameRegistry.addRecipe(new ItemStack(TEBlocks.woodenDrawBridge), new Object[]{"SSS", "III","SSS", 'S', (s), 'I', Blocks.iron_block});

	}

  • Author

Thanks GreyGhost. Your post showed me where I went wrong following your "MinecraftByExample"

 

I had started by making a regular crafting recipe for initial testing, but didn't see that the function call had changed when looking at the ore dictionary version. It all works now.

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.