I added optional minimize parameters to the backpack opening functions. If you want to use these parameters, re-download and re-install.
Examples
[highlight=lua]
--Minimizes the main backpack, pirate bag, and BPoH. Keeps the jewelled backpack open.
Self.OpenMainBackpack(true):OpenChildren({"pirate bag", true}, "jewelled backpack", {"backpack of holding", true})
--Minimizes only the red backpack
Self.OpenMainBackpack():OpenChildren("golden backpack", "jewelled backpack", {"red backpack", true})
--Minimizes everything but the main backpack
Self.OpenMainBackpack():OpenChildren({"backpack of holding", true}, {"red backpack", true}, {"brocade backpack", true})[/highlight]