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.

Deity_Zeke

Members
  • Joined

  • Last visited

Everything posted by Deity_Zeke

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

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.