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

1 hour ago, Villfuk02 said:

am i supposed to register it somewhere

 

Yes, to MinecraftForge.EVENT_BUS.

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/

  • Replies 54
  • Views 12.4k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Call Item#setNoRepair to stop an Item from being repaired.    

  • You never register CapabilityHandler on the Forge event bus, so CapabiltiyHandler#attachCapability is never called and the capability is never attached to any ItemStack.   What diesieben07 s

  • Override it. Forge will call it when required, you don't call it yourself.

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.

 

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.

  • Author

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

  • Author

K, but try looking at the sample i sent you meanwhile please
I'm running out of time today and i'd like to fix it

Edited by Villfuk02

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.