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

I want to add items with a feature where they regenerate durability over time and I am trying to find the most effective or least complicated way to do it. Do either of the following sound ideal:

 

Option 1: Item’s onUpdate()

I feel the easiest way would be to add to an Item’s onUpdate() function something like:

 

if(worldTimeTick % 200 == 0)
{
	if(stack.getDamage() > 0)
		stack.setItemDamage(stack.getDamage() – 1);
}

 

If this is even practical, how could I find the “worldTimeTick” and apply it in the Item class?

 

I see Minecraft Clocks use

 

new ResourceLocation("time")

 

 Can this be used at all for this and if so, how?

 

Option 2: Capabilities

I saw on another post that it you want to track something like time on an Item, you have to do it via Capabilities on its ItemStack.

 

How do/would you even track time with such an option? (I have very primitive understanding of Capabilities)

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.