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.

How to listen to the event of a player pressing a pressure plate? Forge API 1.20.1 47.0.19 (Still need help)

Featured Replies

Posted

How to listen to the event of a player pressing a pressure plate?
Does such an event even exist? I just can't find him.
If there isn't one, what would be the best way to implement something like this?

Forge API 1.20.1 47.0.19 47.2.21

Edited by Ogami

@SubscribeEvent
public static void onVanillaEvent(VanillaGameEvent event) {
  final var level = event.getLevel();
  final var v3 = event.getEventPosition();
  final var vec3i = new Vec3i((int) v3.x, (int) v3.y, (int) v3.z);
  final var blockPos = new BlockPos(vec3i);
  final var block = event.getLevel().getBlockState(blockPos).getBlock();
  if(event.getVanillaEvent().equals(GameEvent.BLOCK_ACTIVATE) && block instanceOf PressurePlateBlock) {
    // Your Code Here
  }
}

 

  • Author
3 hours ago, dee12452 said:
@SubscribeEvent
public static void onVanillaEvent(VanillaGameEvent event) {
  final var level = event.getLevel();
  final var v3 = event.getEventPosition();
  final var vec3i = new Vec3i((int) v3.x, (int) v3.y, (int) v3.z);
  final var blockPos = new BlockPos(vec3i);
  final var block = event.getLevel().getBlockState(blockPos).getBlock();
  if(event.getVanillaEvent().equals(GameEvent.BLOCK_ACTIVATE) && block instanceOf PressurePlateBlock) {
    // Your Code Here
  }
}

 

This event is not called when I press the pressure plate.

  • Ogami changed the title to How to listen to the event of a player pressing a pressure plate? Forge API 1.20.1 47.0.19 (Still need help)
  • Author
On 3/28/2024 at 7:25 AM, dee12452 said:

Works for me, mc 1.20.1 forge 47.2.0

Post your code

I made a mistake. It works. Thank you!

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.