Posted September 10, 20205 yr So I am trying to figure out how to use keybinds and when I use this code: @SubscribeEvent(priority = EventPriority.NORMAL, receiveCanceled = true) public static void keyPressForCustomGUI(InputEvent.KeyInputEvent event){ //For debug System.out.println("Key Input Received"); int key = event.getKey(); if (key == 86){ //For Debug System.out.println("The pressed key was " + key); } } In my ClientEvents class I keep getting double outputs for each of the System.out.prinln s
September 20, 20205 yr Author I figured it out, in the end I went with a completely other way of doing this. Because I don't want to be that guy that just leaves an empty post like this. If anyone has the same problem reply here so I can show you my code.
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.