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

Ok, following problem:

ย 

AttributeInstance attributeinstance = player.func_110148_a(SharedMonsterAttributes.field_111267_a); //gets the "max health" attribute instance
attributeinstance.func_111124_b(attributeinstance.func_111127_a(Reference.UUID_HP)); //deletes old modifier (you cannot overwrite)
attributeinstance.func_111121_a(new AttributeModifier(Reference.UUID_HP, "modifier.health", 0, 0)); //adds new modifier

ย 

I run this code (with slightly different parameters) in a PlayerTracker to reduce the max health of players on respawn via the new attribute modifier system of 1.6. It works like a charm.

However, if I try to set it back to zero once the player uses an item (onItemRightClick() in the Item class), the GUI does not reflect the changes correctly.

With the new GUI, minecraft actually checks your max health and draws the amount of hearts accordingly. This works in my PlayerTracker, but when I run the code in the Item class, all I get back is greyed out hearts (like you took damage). They don't regenerate (because they are full internally). They should be red, which they are once I update the GUI manually ingame (take damage / eat food).

ย 

A workaround I found was to damage the player with 1/2 heart once he eats the item but that is not a solution. Any help would be appreciated.

  • Author

I'm sorry, but to me it looks the same... This is from the potion class:

public void func_111185_a(EntityLivingBase par1EntityLivingBase, BaseAttributeMap par2BaseAttributeMap, int par3)
ย  ย  {
ย  ย  ย  ย  Iterator iterator = this.field_111188_I.entrySet().iterator();

ย  ย  ย  ย  while (iterator.hasNext())
ย  ย  ย  ย  {
ย  ย  ย  ย  ย  ย  Entry entry = (Entry)iterator.next();
ย  ย  ย  ย  ย  ย  AttributeInstance attributeinstance = par2BaseAttributeMap.func_111151_a((Attribute)entry.getKey());

ย  ย  ย  ย  ย  ย  if (attributeinstance != null)
ย  ย  ย  ย  ย  ย  {
ย  ย  ย  ย  ย  ย  ย  ย  AttributeModifier attributemodifier = (AttributeModifier)entry.getValue();
ย  ย  ย  ย  ย  ย  ย  ย  attributeinstance.func_111124_b(attributemodifier);
ย  ย  ย  ย  ย  ย  ย  ย  attributeinstance.func_111121_a(new AttributeModifier(attributemodifier.func_111167_a(), this.getName() + " " + par3, this.func_111183_a(par3, attributemodifier), attributemodifier.func_111169_c()));
ย  ย  ย  ย  ย  ย  }
ย  ย  ย  ย  }
ย  ย  }

ย 

This is basically the same thing except it grabs the AttributeInstance from the BaseAttributeMap and uses EntityLivingBase instead EntityPlayer. But changing my code to

BaseAttributeMap attributemap = par1EntityLivingBase.func_110140_aT();
AttributeInstance attributeinstance = attributemap.func_111151_a(SharedMonsterAttributes.field_111267_a);
attributeinstance.func_111124_b(attributeinstance.func_111127_a(Reference.UUID_HP));
attributeinstance.func_111121_a(new AttributeModifier(Reference.UUID_HP, "modifier.health", 0, 0));

does not work properly either.

ย 

However, calling that function like this (21 is the health boost potion):

Potion.potionTypes[21].func_111185_a(par3EntityPlayer, par3EntityPlayer.func_110140_aT(), 0);

does work. That's not really an option though because it only works in multipliers of 2 full hearts...

ย 

I feel like I'm close but I just cannot figure it out...

  • Author

SOLVED - My feeling was right, I was very close.

ย 

AttributeInstance attributeinstance = player.func_110140_aT().func_111151_a(SharedMonsterAttributes.field_111267_a);

ย 

Getting the attribute instance like that works, I'm just using EntityPlayer instead of EntityLivingBase (as I tried above).

ย 

ย 

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.