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.

Maruf995

Members
  • Joined

  • Last visited

  1. How to make it so that when you click on the right mouse button. From the player in a certain radius, a shockwave goes off. And why doesn't the sound work? Example: Click public class HammerMontuItem extends PickaxeItem { public HammerMontuItem(Properties properties) { super(ModToolTiers.Hammer_montu, 2, -2.8f, properties); } @Override public InteractionResultHolder<ItemStack> use(Level world, Player player, InteractionHand hand) { ItemStack stack = player.getItemInHand(hand); BlockPos pos = player.blockPosition(); int radius = 5; if (!world.isClientSide && player instanceof ServerPlayer) { ServerPlayer serverPlayer = (ServerPlayer) player; serverPlayer.swing(hand, true); world.playSound(null, player.getX(), player.getY(), player.getZ(), ModSounds.EARTHQUAKE.get(), SoundSource.PLAYERS, 2.0f, 1.0f); // serverPlayer.connection.send(new SAnimateHandPacket(serverPlayer, hand)); for (BlockPos targetPos : BlockPos.betweenClosed(pos.offset(-radius, -radius, -radius), pos.offset(radius, radius, radius))) { BlockState targetState = world.getBlockState(targetPos); if (isOre(targetState) && targetPos.getY() < pos.getY()) { int heightDifference = pos.getY() - targetPos.getY(); BlockPos newPosition = targetPos.above(heightDifference); world.setBlockAndUpdate(newPosition, targetState.getBlock().defaultBlockState()); world.setBlockAndUpdate(targetPos, Blocks.AIR.defaultBlockState()); } } } return InteractionResultHolder.pass(stack); } private boolean isOre(BlockState state) { Block block = state.getBlock(); return block == Blocks.COAL_ORE || block == Blocks.IRON_ORE || block == Blocks.GOLD_ORE || block == Blocks.DIAMOND_ORE || block == Blocks.LAPIS_ORE; }

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.