This is my attempt at sending a packet to do it:
Packet102WindowClick wc = new Packet102WindowClick();
wc.window_Id = 2; // Furnace
wc.inventorySlot = 2; // Output
wc.mouseClick = 0; // Left click
wc.holdingShift = true; // Get it all
wc.action = minecraft.thePlayer.craftingInventory.getNextTransactionID(minecraft.thePlayer.inventory);
wc.itemStack = finishedStack;
ModLoader.sendPacket(wc);
logger.info("Transferred!");
EDIT: This works!!!!! :D:D:D:D
How can I move an item from the furnace to the inventory or vice versa?
I've got the part of finding the item in the inventory but what code do I use to move it?
5 replies
Important Information
By using this site, you agree to our Terms of Use.