Jump to content

Recommended Posts

Posted

subscribe to LivingEquipmentChangeEvent. then add the Effect if the Item with your conditions is the new Item for the Slot,
if the new Item equals old Item do nothing, else remove the Effect

Posted (edited)

Hey, how would I go about apply the enchanted effect?, also I don't want the armor to be enchanted I just want it to look enchanted when wearing it.

Edited by Azarsra
Posted (edited)

this is handled by Item#isFoil, but the method does not provide a Player so you need to replace the way vanilla renders the Armor

As far as I can see, Item#isFoil is only executed on the client (in vanilla code), that would mean that you would get a player via Minecraft.getInstance().player
so you be able to check if the Player is wearing your Item, note you should make a check if you are really on client via:

FMLEnvironment.dist == Dist.CLIENT

note you also need to handle a else case, means a other Mod is calling Item#isFoil on server

Edited by Luis_ST

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.