Jump to content

event.state for 1.8


Ne0NAfr0

Recommended Posts

Hey, just a quick question.

 

How would I update the code below to work in 1.8. I can't find where in event.state to change it to, or if there is something else I need to do. Thanks.

event.drops.add(new ItemStack (Items.stick, 1));

 

I have already changed:

 

    if (event.state == Blocks.leaves)

to:

    if(event.state.getBlock() == Blocks.leaves || event.state.getBlock() == Blocks.leaves2)

 

But I can not figure out the drops part.

.|\| E0 |\|.      /\ Fr0

Link to comment
Share on other sites

Yes, I had never actually tried the code in 1.7, I was reading from another article, so I was unintentionally lying. Sorry.

To use HarvestDropsEvent I have to pass it variables, how do I give it all of its required variables? it needs:

 

(World world, BlockPos pos, IBlockState state, int fortuneLevel, float dropChance, List<ItemStack> drops, EntityPlayer harvester, boolean isSilkTouching)

 

This is what I have figured out so far, but I am not even sure if this is how you intended me to use it, please explain for me. Thanks for the help.

http://pastebin.com/XD99K5r2

.|\| E0 |\|.      /\ Fr0

Link to comment
Share on other sites

You don't pass those values to

HarvestDropsEvent

, Forge does that. You just need to subscribe to the event and read the values from it. coolAlias has a tutorial on event handlers here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

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.