Jump to content

[1.11]More problems with custom item


Villfuk02

Recommended Posts

1 hour ago, Villfuk02 said:

am i supposed to register it somewhere

 

Yes, to MinecraftForge.EVENT_BUS.

  • Like 1

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

1 hour ago, diesieben07 said:

getRight returns an ItemStack. You check if it's equal to an Item. This is never going to be true.

Also, you will need to copy the stack before you set it as the output.

 

  • Like 1

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I've changed the anvil method a little:

 @SubscribeEvent
	  public void handleAnvilEvent(AnvilUpdateEvent evt) {
		 ItemStack stack = evt.getLeft().copy();
		 if(stack.getItem().equals(ModTools.metal_detector)){
	    	if (evt.getRight().getItem().equals(Items.DYE)){
	    		if(evt.getRight().getMetadata() < 7){
	    			int antiIntegrity = 100 - stack.getCapability(DetectorProvider.DETECTOR_CAP, null).getIntegrity();
	    			int cost = (antiIntegrity * antiIntegrity) / 200 + 5;
	    			evt.setCost(cost);
	    			stack.getCapability(DetectorProvider.DETECTOR_CAP, null).setBattery(evt.getRight().getMetadata() + 1);
	    			stack.getCapability(DetectorProvider.DETECTOR_CAP, null).setIntegrity(stack.getCapability(DetectorProvider.DETECTOR_CAP, null).getIntegrity() - cost);
	    			evt.setOutput(stack);
	    		}
	    	}
		 }
	  }

But the integrity doesn't change and is allways 100
When i made it to print the integrity to chat, it printed the correct value...

BTW here are methods about Integrity from the Capability
 

@Override
	public void setIntegrity(int value) {
		integrity = value;
		if (integrity < 0)
			integrity = 0;
		if (integrity > 100)
			integrity = 100;
	}

	@Override
	public int getIntegrity() {
		return integrity;
	}

 IDK what is wrong with this, because setBattery() works

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.