Jump to content

[1.7.10] Event Armor Equipped ?


toss

Recommended Posts

Hey, i would like to know if minecraft forge has an event which is called when the Player equips an ItemArmor

 

I can't find it... and i don't really want to hardcode conditions into the tick update function

 

Can anyone tell me if there's an alternative event, or anything which could allow me to check an item when it is equipped?

 

Thank you

Link to comment
Share on other sites

Hey, i would like to know if minecraft forge has an event which is called when the Player equips an ItemArmor

 

I can't find it... and i don't really want to hardcode conditions into the tick update function

 

Can anyone tell me if there's an alternative event, or anything which could allow me to check an item when it is equipped?

 

Thank you

 

PlayerTickEvent.

player.inventory.armorItemInSlot(/*The slot.*/).getItem();

Slots:

0 = boots.

1 = leggings.

2 = chestplate.

3 = helmet.

  • Like 1

If I helped please press the Thank You button.

Link to comment
Share on other sites

Yep that's what I meant, I guess forge should handle it

 

As a result, I created a new thread which will allow me to check this without adding too much code into the main game loop and make it laggy

 

It basically registers the player stuff into variables, and then I compare it every half-seconds with the current player stuff and apply modification if there was changes, it works great but kinda hardcodded

 

(I meant, 10 or 20 conditions multiply by 100 players online, 20 times par seconds (ticks) would probably make the server slower)

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.