How can I swap two inventory slots dynamically?
I would like to use command blocks to swap the contents of two specific inventory slots dynamically, while retaining the item, data value, and stack size. I know it is possible to set a slot to contain a specific item, but I am unsure as to whether or not it is possible to switch them (without a ridiculous amount of command blocks, accounting for every possible item in the game). Is this possible?
Best Answer
Possible as of 1.14, which allows you to use the new /data modify command to copy NBT between sources.
You need to have three commands per slot: one to copy the ID, one to copy the Count, and one to copy the tag compound (which stores the item's other data). You don't want to copy the Slot tag because it'll mess things up. Instead, you'll rely on it for selecting which slots to modify.
It won't be this easy though. Coding practice says you need a third temporary location when you swap two values. So free up a third slot in the block you want to modify as a utility slot. In this case, I'm going to swap slots 0 and 1 of the chest at coordinates (12, 23, 34) with my utility slot at slot 0 of block (0, 0, 0). Make sure to place one piece of dirt in the utility slot.
data modify block 0 0 0 Items[0].id set from block 12 23 34 Items[{Slot:0b}].id
data modify block 0 0 0 Items[0].Count set from block 12 23 34 Items[{Slot:0b}].Count
data modify block 0 0 0 Items[0].tag set from block 12 23 34 Items[{Slot:0b}].tag
data modify block 12 23 34 Items[{Slot:0b}].id set from block 12 23 34 Items[{Slot:1b}].id
data modify block 12 23 34 Items[{Slot:0b}].Count set from block 12 23 34 Items[{Slot:1b}].Count
data modify block 12 23 34 Items[{Slot:0b}].tag set from block 12 23 34 Items[{Slot:1b}].tag
data modify block 12 23 34 Items[{Slot:1b}].id set from block 0 0 0 Items[0].id
data modify block 12 23 34 Items[{Slot:1b}].Count set from block 0 0 0 Items[0].Count
data modify block 12 23 34 Items[{Slot:1b}].tag set from block 0 0 0 Items[0].tag
Pictures about "How can I swap two inventory slots dynamically?"



How do you swap two items in Minecraft?
Holding \u21e7 Shift and clicking on the item sends the item from the player's hotbar to the main 27 slots, or vice versa. Doing so, while a block's inventory (chest, dispenser, etc.) is open, sends the item stack immediately from the player's inventory into the block that they have open or vice versa.How do you change inventory slots in Minecraft?
Press and hold the shift key and left-click on one item in the inventory, drag that item, hover it on another similar item in the inventory, and click on it. All the items will move to the chest at once. These two methods can also be used to move items from your chest to the inventory.How do you change things in your inventory?
You can use the command /clear [targets] [item] [maxCount] , where: targets is optional. It is the name of the player (or a target selector) whose inventory you wish to clear. If no player is specified, it will default to the player running the command.Weapon Modifier Transfer - Inventory Slot Transfer (IST) - Breath of the Wild
More answers regarding how can I swap two inventory slots dynamically?
Answer 2
I can't remember whether the 10th hotbar slot came up in 1.9 or 1.10, but if you are running one of those you can press F (or your set button) to toggle the blocks in your hand and the 10th slot.
Answer 3
You can use a mod to do it. For example, hotbarswapper. It involves no command blocks just if you want to use it on a real server like Hypixel or Mineplex you will most likely be banned for "unauthorized mods." By holding Ctrl and scrolling, you can swap the bars in your inventory, up or down.
Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.
Images: Liam Moore, Liam Moore, olia danilevich, olia danilevich
