Examples of IdentifyItemEvent


Examples of us.deathmarine.diablodrops.events.IdentifyItemEvent

                  ChatColor.MAGIC.toString()))
              && (!name.contains(ChatColor.MAGIC.name()) && !name
                  .contains(ChatColor.MAGIC.toString())))) {
            continue;
          }
          IdentifyItemEvent iie = new IdentifyItemEvent(tool);
          plugin.getServer().getPluginManager().callEvent(iie);
          if (iie.isCancelled()) {
            p.sendMessage(ChatColor.RED
                + "You are unable to identify right now.");
            p.closeInventory();
            e.setUseItemInHand(Result.DENY);
            e.setCancelled(true);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.