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

link|improve this question

This is closed i placed the same question on gamedev and am awaiting a answer there. – HcgRandon Jan 17 at 14:42
feedback

closed as too localized by Robert Harvey Jan 17 at 18:05

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.