I am making a bukkit plugin that takes the player to a "FunZone" and allows them to do just about anything. I don't want data trasferd between the two worlds so far i have got most everything stoped heres the problem code:
Integer normInvSize = player.getInventory().getSize();
Integer i = 0;
for (i=0; i<normInvSize; i++) {
ItemStack item = player.getInventory().getItem(i);
pConfig.set(player.getWorld().getName()+"Inv."+i.toString()+".amount", item.getAmount());
Short durab = item.getDurability();
pConfig.set(player.getWorld().getName()+"Inv."+i.toString()+".durabillity", durab.intValue());
pConfig.set(player.getWorld().getName()+"Inv."+i.toString()+".type", item.getTypeId());
player.getInventory().removeItem(new ItemStack(item.getType(), item.getAmount()));
}
i have everything set up how i want it but i get stray items following me between the worlds. this line:
player.getInventory().removeItem(new ItemStack(item.getType(), item.getAmount()));
Does not remove all of the inventory... I want some code that will remove all inventory (i got armor already) i already have a way to restore the inv but it wont remove everything. In ex. i can trashfer map. Some stone tools from the "funzone" to the normal world...
Thanks in advanced