Code:
local items = {268, 23373}
local MainBP = "Shopping Bag"
local OtherBP = "Camouflage Backpack"
Module.New("Sort Supplies", function()
local bp1 = Container(MainBP)
for spot, item in bp1:iItems() do
if (table.contains(items, item.id)) then
bp1:MoveItemToContainer(spot, Container.New(OtherBP):Index())
break
end
end
end)