help with my mod

Started by drewmin on

Topic category: Help with MCreator software

Joined Apr 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
help with my mod

Hi everybody. Tell me how to make an item appear not from a specific list, but absolutely randomly from all the mods that are installed. I want to make a block, when you click on which a random item from standard or from mods installed in the build would appear. Thanks

Joined Dec 2014
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
This requires custom codeā€¦
Wed, 04/02/2025 - 11:18

This requires custom code but it's quite simple,

Optional<Holder.Reference<Item>> item = BuiltInRegistries.ITEM.getRandom(world.getRandom());
assert item.isPresent();
itemStack = item.get().value().getDefaultInstance();
assert !itemStack.isEmpty();

Remember to add the itemStack local variable