Jump to content

[1.7.10]Checking if itemstack is block/item


KakesRevenge

Recommended Posts

Hey,

how can i check if itemstack is item ?

i want to set here

 

 

@Override

public boolean onItemUse(ItemStack itemstack, EntityPlayer player, World world, int x, int y, int z, int par1, float par2, float par3, float par4) {

Block blockoneye = world.getBlock(x, y, z);

int metadata = world.getBlockMetadata(x, y, z);

 

if(player.canPlayerEdit(x, y, z, par1, itemstack)) {

if(FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)) != null) {

ItemStack smeltedblockoneye = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)).copy();

player.inventory.addItemStackToInventory(smeltedblockoneye);

}

}

 

 

that if the smelting result is instance of block then do my thing nad the same thing with item

how to this ?

I'm beginner in java and in minecraft modding.

Please be specific.

Any code examples are appreciated.

Sorry for my english i'm from Czech republic.

Please hit that thank you button if i helped :)

Link to comment
Share on other sites

if(smeltedblockoneye instanceof ItemBlock) {

this gives me an error

I'm beginner in java and in minecraft modding.

Please be specific.

Any code examples are appreciated.

Sorry for my english i'm from Czech republic.

Please hit that thank you button if i helped :)

Link to comment
Share on other sites

error is "incompatible conditional operand types ItemStack and ItemBlock"

 

smeltedblockoneye looks like this

ItemStack smeltedblockoneye = FurnaceRecipes.smelting().getSmeltingResult(new ItemStack(blockoneye)).copy();

I'm beginner in java and in minecraft modding.

Please be specific.

Any code examples are appreciated.

Sorry for my english i'm from Czech republic.

Please hit that thank you button if i helped :)

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.