-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By PleaseHelpACoolKid · Posted
PROBLEM DESCRIPTION : Hello, I was thinking of a fun algorithm ! I try to detect if there's items in a Chest and if there's items in it I should be able to display them in the chat. I putted 1 apple in each slots of the chest but it still say the message "empty" idk why THE CODE : public void onEvent(Event e) { if (e instanceof EventUpdate) { if (e.isPre()) { for (Object o : mc.theWorld.loadedTileEntityList) { if (o instanceof TileEntityChest && mc.currentScreen instanceof GuiChest) { // If this is a Chest and If we are on the chest inventory TileEntityChest chest = (TileEntityChest) o; mc.thePlayer.sendChatMessage("Found chest at " + chest.getPos().getX() + ", " + chest.getPos().getY() + ", " + chest.getPos().getZ()); for (int i = 0; i < chest.getSizeInventory(); i++) { ItemStack itemStack = chest.getStackInSlot(i); // Returns the stack in slot i if (itemStack != null && itemStack.stackSize > 0) { String itemName = itemStack.getDisplayName(); mc.thePlayer.sendChatMessage("Slot " + i + ": " + itemName); } else { mc.thePlayer.sendChatMessage("Slot " + i + ": Empty"); } } } } } } } WHAT I'VE TRIED/WHAT I KNOW : To detect the Chest and you see that there's the chest Coords in the chat To detect the slots and It displays all the slots (27) but no element in it (that's the problem) -
By Elizabeth stubbs · Posted
Hey so I've got a Mac desktop computer that I've had for a while now but it still works very good. I have Minecraft and the latest version installed and have been trying to download forge so I can play a modded version, my problem is after following all the video instructions and written instructions and everything forge just always says error right after it downloads. The first image shows forge before I try to fully download it, as you can see everything looks right and then when I try to click ok it loads and then says the second image the error thing and just doesn't let me download. Ive done everything right I don't understand why it's not working. Has anyone ever had this problem or just knows how to fix this. Im desperate for help I've tried so many things. Thanks
-
-
Topics
-
Who's Online (See full list)
Recommended Posts