[HELP... Again] Block Right Click Event Thing?

Discussion in 'Plugin Development' started by stuntguy3000, Apr 24, 2012.

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

    stuntguy3000

  2. Offline

    jamietech

    Code:
    @EventHandler
    public void onPlayerInteract(PlayerInteractEvent event) {
    if (event.getAction() == Action.RIGHT_CLICK_BLOCK) {
    event.getPlayer().sendMessage(ChatColor.AQUA + "You clicked a " + ChatColor.BOLD + event.getClickedBlock().getType().toString().toLowerCase().replace("_", ""));
    }
    }
    should work
     
    Wizardo367 likes this.
  3. It does :)
     
Thread Status:
Not open for further replies.

Share This Page