Minecraft – How to you insert/extract items in/from a specific inventory slot

minecraft-computercraftminecraft-java-edition

I know it is possible, but I have no idea whether it is an add-on or just some undocumented vanilla method (the turtle api can't be used for that, apparently).

Best Answer

This is not possible directly, but if you know that all slots will always be full, or which item you are looking for, you can keep using suck() until you hit the right slot (in the former case), or you find the right item (in the latter).