Event for middle clicking mouse wheel when in creative?

Discussion in 'Plugin Development' started by Xx_LeetGamer_xX, Aug 5, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    Xx_LeetGamer_xX

    Is there an event that is called when you middle click the mouse wheel when in creative mode?
     
  2. Offline

    etaxi341

  3. Offline

    AmShaegar

    Well, I could not find anything helpful, but the server must be notified about this to update the inventory server side.
     
  4. Offline

    AmShaegar

    Adversarius Ah, you got it.
    Code:
        @EventHandler
        public void onMiddleClick(InventoryClickEvent event) {
            if(event.getClick() != ClickType.CREATIVE) {
                return;
            }
     
            // do stuff here
        }
    Edit: Or not :( Clicking in your inventory would also trigger this.
     
Thread Status:
Not open for further replies.

Share This Page