NBTUtil.setString(nbtTagCompound, Constants.NBT.UID, message.uuid);
NBTUtil.setByte(nbtTagCompound, Constants.NBT.TYPE, message.type);
NBTUtil.setInteger(nbtTagCompound, Constants.NBT.SLOTS_PER_ROW, message.slotsPerRow);
NBTUtil.setBoolean(nbtTagCompound, Constants.NBT.INTELLIGENT, message.intelligent);
BackpackSave backpackSave = new BackpackSave(nbtTagCompound);
Minecraft.getMinecraft().displayGuiScreen(FactoryBackpack.getGuiContainer(backpackSave, new IInventory[] { entityPlayer.inventory, backpackInventory }, entityPlayer));
entityPlayer.openContainer.windowId = message.windowId;
return null;