Jump to content

Recommended Posts

Posted

I was wondering if there was a way to make a KeyBinding require 2 keys, like LShift + S.

Technically I have it working. But in the controls menu it only shows the 's' key because of the way I did it.

 

		KeyBinding[] keys = { new KeyBinding("Skill GUI", Keyboard.KEY_S), };
	boolean[] repeat = { false, false };
	KeyBindingRegistry.registerKeyBinding(new KeyPress(keys, repeat));

	@Override
public void keyDown(EnumSet<TickType> types, KeyBinding kb, boolean tickEnd, boolean isRepeat) {

	pressed = !pressed;

	if (kb.keyCode == Keyboard.KEY_S && Keyboard.isKeyDown(Keyboard.KEY_LSHIFT)) {
		PacketDispatcher.sendPacketToServer(new RequestSkillGUIPacket().makePacket());
	}

}

The way I did it, it does require a LShift + S, that part works.

But like I said, in the controls menu it only registers the "s" key, and since it's already being used by something, it's a 'conflict'.

~ Z ~

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.