27 oct. 2015, 20:51

Ta fonction onUpdate ne sera jamais appelé car tu n’as pas les bons arguments (ni le bon type).

   public void onUpdate(ItemStack stack, World world, Entity entity, int slotIndex, boolean inHand) {}

Donc ça serait plutôt comme ça :

   public void onUpdate(ItemStack stack, World world, Entity entity, int slotIndex, boolean inHand)
    {
        if(!stack.hasTagCompound() && stack.getTagCompound().getInteger("timer") > 0)
            stack.getTagCompound().setInteger("timer", stack.getTagCompound().getInteger("timer") - 1);
    }

Et pour onItemRightClick :

   public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player)
    {
        if(!stack.hasTagCompound())
        {
            stack.setTagCompound(new NBTTagCompound());
        }
        item.getTagCompound().setInteger("timer", 20);
        item.damageItem(1, player);
        player.addPotionEffect(new PotionEffect(Potion.damageBoost.id, 50, 2));
        return stack;
    }