27 oct. 2015, 20:36

Dans on update, si timer > 0, tu enlève 1 à timer
Je pense que c’est plutôt un truc comme


public ItemStack onUpdate(ItemStack item, World world, EntityPlayer player)
{

if(!item.hasTagCompound())
{
item.setTagCompound(new NBTTagCompound());
item.getTagCompound().setInteger("timer"), 0);
}

if(item.getTagCompound().getInteger("timer") > 0)
{
item.getTagCompound().setInteger("timer", item.getTagCompound().getInteger("timer") - 1)
}

return item;

}

public ItemStack onItemRightClick(ItemStack item, World world, EntityPlayer player) {

if(item.getTagCompound().getInteger("timer") <= 0)
{
item.getTagCompound().setInteger("timer", 20);
item.damageItem(1, player);
player.addPotionEffect(new PotionEffect(Potion.damageBoost.id, 50, 2));
}
return item;