Posted May 11, 201411 yr Hi ^^ How can i spawn ( or transfer ) a item inside a chest stand near the spawn block ? ----------------- ##CC ##CC # = my block that spawns the item C = the chest At the moment i spawn the item like this in world : --- Entity entity = new EntityItem(world, x, y + 1, z,new ItemStack(MoonTools.sparkledust)); world.spawnEntityInWorld(entity); --- How can i place the "sparkledust" inside the chest ? Any idea with code maybe ^^ ?
May 11, 201411 yr TileEntity tile = world.getBlockTileEntity(x, y, z); if(tile instanceof IInventory){ IInventory inv = (IInventory)tile; inv.setInventorySlotContents(slot, itemStack); }
May 11, 201411 yr Author It works ! Thank you that was very quick ^^ Errrr second question have you a code that filled the whole chest with that item every time i call that function ?
May 11, 201411 yr for(int i = 0; i < inv.getSizeInventory(); i++){ inv.setInventorySlotContents(i, itemStack); }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.