[Help] Items arrange backwards in bag on certain characters

I just fixed this on a different character the other day but I can’t for the life of me remember how. Backpack gets sorted left to right but in reverse item order.

I’ve tried the 4 suggested commands on the bnet support article but they don’t fix this arrangement issue.

Here’s two screenshots to demonstrate what I mean:

New alt sorting: tinyurl com/yty267dr

Main char sorting: tinyurl com/2fmnrk82

I want to make my alt’s inventory sort the same way as my main. Thank you.

Grab AdvancedInterfaceOptions check the reverse cleanup option.

/run SetSortBagsRightToLeft( value )

where value is either true or false

but AdvancedInterfaceOptions is way better for lots of reasons

Reverse clean up bags in AIO is the same option as /run SetSortBagsRightToLeft( value ) isn’t it?

It’s a bit difficult to explain what I mean. The direction my inventory is filled/sorted is correct (top left to bottom right) but the order is reversed. It’s putting my hearthstone and other items at the end of my bags instead of the start. The screenshots illustrate it better I think.

So there’s 2 settings:
Reverse Cleanup Bags = C_Container.SetSortBagsRightToLeft()
Loot to Leftmost Bag = C_Container.SetInsertItemsLeftToRight()

Both are character specific and disabled by default.

Reverse Cleanup Bags

Disabled

Enabled

I don’t currently have greys on that toon but if I did, they’d be sorted to the bottom right with it Enabled.

Loot to Leftmost Bag
Disabled: stuff fills your backpack first (top) and then your additional bags (towards the bottom).
Enabled: stuff fills out bag 4 (or the most you have) (bottom) then fills towards the backpack (top).

2 Likes

Try using one of these commands the “true” script worked for me.

/run C_Container.SetSortBagsRightToLeft(false)

or

/run C_Container.SetSortBagsRightToLeft(true)