Posted September 4, 20178 yr How can I place a chest with Items inside? I've tryed a lot of things, but the chest spawn without items... P.S. : I work in minecraft forge 1.8
September 4, 20178 yr Author Sorry, but I like 1.8... who can say how to place a chest woth item? please
September 5, 20178 yr You'll need to look into Capabilities (I'm 95% sure they existed in 1.8). But basically, once you have the Tile Entity, you can get its ITEM_HANDLER_CAPABILITY , then use that Capability's insertItem, extractItem, etc. methods to manipulate the inventory as you wish. Whatever Minecraft needs, it is most likely not yet another tool tier.
September 5, 20178 yr Vanilla inventories also still use the IInventory system, so if the capability thing doesn't work, you can cast the TE to IInventory. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
September 5, 20178 yr Author Sorry, but I ' new in this type of program... Can you make an easy example?
September 5, 20178 yr TileEntity te = world.getTileEntity(pos); either: te.getCapability(...) or: ((IInventory)te).setInventorySlotContents(...) Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.