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

I implemented wood pillars and im attempting to add the crafting recipes right know but according to the code there are only 2 types of wood... Help please! Need all 6 types.

 

        GameRegistry.addShapedRecipe(new ItemStack(OakPillar, 3),"O" ,"O", 'O', Blocks.log);

    GameRegistry.addShapedRecipe(new ItemStack(DarkOakPillar, 3),"O" ,"O", 'O', Blocks.log);

    GameRegistry.addShapedRecipe(new ItemStack(SprucePillar, 3),"O" ,"O", 'O', Blocks.log);

    GameRegistry.addShapedRecipe(new ItemStack(BirchPillar, 3),"O" ,"O", 'O', Blocks.log);

    GameRegistry.addShapedRecipe(new ItemStack(JunglePillar, 3),"O" ,"O", 'O', Blocks.log);

    GameRegistry.addShapedRecipe(new ItemStack(AcaciaPillar, 3),"O" ,"O", 'O', Blocks.log);

~ExtendedHorizons

Ok, this post kind of confused me. You want to use different woodtypes in your crafting, right?

 

If i remember correctly this code here should allow you to use get a specific kind of wood.

 

ItemStack stack = new ItemStack(Block.wood, 1, intWoodType);
GameRegistry.addShapedRecipe(new ItemStack(OakPillar, 3),"O" ,"O", 'O', stack);

 

Maybe you should look at this:

http://www.minecraftforge.net/wiki/Metadata_Based_Subblocks

Using subblocks you only need 1 Block for all your pillars. Kinda like wool.

 

You could also use OreDictionary.WILDCARD_VALUE instead of intWoodType. This would make it possible to craft your item/block with all different wood types.

But then you would need a crafting event that sets the log type for you. I used this and nbttags to make it possible to add potions to all food that has been added by vanilla or other mods.

Here could be your advertisement!

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.