Loading...

Tukui - Hunters bag organizing arrows

1
New here so sorry if this topic has been brought up but it appears in TBC when organizing bags my arrows get thrown into the loop with everything else so I then have to manually put them back in the quiver slot. Tried to look for a way to customize it so it doesn't do that every time but can't figure it out. Any help would be appreciated

Tukui - Hunters bag organizing arrows

3
Until a fix comes in, you can help yourself by editing the "SortBags.lua" file with a text editor. It's found in Tukui\Libs\SortBags

Search for a line

Code: Select all

local CLASSES = {
there you'll find the itemIDs of items that are classified as arrows or bullets. Simply add your arrows to it. For example, for the two new basic arrows, that's 28053 and 28056, so the line would look like this:

Code: Select all

local CLASSES = {
	-- arrow
	{
		containers = {2101, 5439, 7278, 11362, 3573, 3605, 7371, 8217, 2662, 19319, 18714},
		items = set(2512, 2515, 3030, 3464, 9399, 11285, 12654, 18042, 19316, 28053, 28056, 30611),
	},
To find the itemIDs, just use wowhead, look up the item, the itemID is part of the URL.

Tukui - Hunters bag organizing arrows

4
Awesome! Thank you for that info. I found that the reason was not the arrows but the itemID for the bag wasnt under containers. After adding the itemID of the quiver the arrows are now sorting properly. Thank you Cadfael!