Backpack Opener
Imagine this scenario: you're in your inventory and want to quickly open a backpack, book, or wireless terminal. Normally, you'd need to move the item to your main hand, right-click, and then go back. Backpack Opener completely eliminates this need!
Ease of Use
No need to move items to your main hand. Simply right-click on any item with a graphical interface directly in your inventory. The mod will automatically move it to your active hand, open the interface, and after closing, return everything to its place.
Video demonstration of the mod:
- [YouTube - Backpack Opener showcase](video link)

Configuration via CraftTweaker
Compatible items are configured using CraftTweaker integration. To prevent errors on dedicated servers, it's recommended to add entries only in client scripts with the #sideonly client directive.
Basic Syntax:
// Adding items for quick opening
mods.bpopener.BPOpener.addEntry(IIngredient item, boolean sneaking);
Usage Example:
#sideonly client
mods.bpopener.BPOpener.addEntry(<minecraft:writable_book>, false);
mods.bpopener.BPOpener.addEntry(<minecraft:written_book>, false);
mods.bpopener.BPOpener.addEntry(<appliedenergistics2:wireless_terminal>, false);
mods.bpopener.BPOpener.addEntry(<appliedenergistics2:portable_cell>, false);
Important Note
This mod operates exclusively on the client side. Before using it, ensure that the server permits automatic actions like auto-switching items.