Bonjour, comment faire pr supprimer un item (pour echanger un item dans mon cas il faut en give puis suppr l’ancien)?
Merci
package com.extremium.mod.tools;
import com.extremium.mod.init.ItemMod;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemSword;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
public class SwordDark extends ItemSword
{
public SwordDark(ToolMaterial p_i45356_1_)
{
super(p_i45356_1_);
}
public ItemStack onItemRightClick(ItemStack p_77654_1_, World p_77654_2_, EntityPlayer player)
{
if(player.isSneaking())
{
if (p_77654_1_.stackSize <= 0)
{
return new ItemStack(Items.glass_bottle);
}
player.inventory.addItemStackToInventory(new ItemStack(Items.glass_bottle));
return p_77654_1_;
if(player.inventory.hasItemStack(new ItemStack(ItemMod.dark_sword)))
{
int count = 0;
for(int i = 0; i < player.inventory.getSizeInventory(); i++)
{
if(player.inventory.getStackInSlot(i) != null && player.inventory.getStackInSlot(i).getItem() == ItemMod.dark_sword)
{
player.inventory.getItemStack();
}
}
}
}
return p_77654_1_;
}
@Override
public boolean onLeftClickEntity(ItemStack stack, EntityPlayer player, Entity entity)
{
((EntityLivingBase)entity).setFire(8);
((EntityLivingBase)entity).addPotionEffect(new PotionEffect(Potion.weakness.id, 160, 0));;
((EntityLivingBase)entity).addPotionEffect(new PotionEffect(Potion.poison.id, 160, 0));;
((EntityLivingBase)entity).addPotionEffect(new PotionEffect(Potion.confusion.id, 160, 0));;
return super.onLeftClickEntity(stack, player, entity);
}
}