Jump to content

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


Ogami

Recommended Posts

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
Link to comment
Share on other sites

@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
  }
}

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 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)

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.