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 am very new to modding and was wondering if I could change what drops when you break a stone block and a gravel block.  I want to have crystals drop from a stone block on a 1% chance and shattered crystal drop from gravel on a 1% chance.

1. Learn about Forge Events.

2. Do NOT proceed until you understand them.

3. Subscribe to HarvestDropsEvent and add new loot to drop list.

 

4. Example:

@SubscribeEvent
public void onHarvestDrops(HarvestDropsEvent event)
{
Block block = event.state.getBlock();
if (block == Blocks.iron_ore)
{
	event.drops.clear(); // you can also clear drops
	event.drops.addAll(some collection of ItemStacks);
}
}

 

To add ItemStack to drop you can simply do: new ItemStack(Item, amount, meta).

1.7.10 is no longer supported by forge, you are on your own.

  • Author

Thanks I will definitely take it super slow with all this.  I just wanted to make sure it is doable before I move on with my idea.  This is perfect and exactly what I was looking for.

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.