How it works
Loops thru the contents of your bags, whispers yourself the item link for each item found, so make sure your bags contains different stuff.
Instructions
1. Make sure you have some different stuff in your bags, or it wont work. (I havent tested how many different things is needed)
2. Make the macro below
3. Put the macro on your actionbar and click it.
4. Profit?
Macro
/run for i = 0, 100 do for bn = 0, NUM_BAG_SLOTS do for sn = 1, GetContainerNumSlots(bn) do iid = GetContainerItemID(bn, sn); if iid then SendChatMessage(select(2, GetItemInfo(iid)), "WHISPER", "nil", GetUnitName("player")); end end end end
Apparently some have issues with reconnecting after they DC. If so, try this macro instead.
Alternative Macro
/run for i=0,100 do for bn=0,NUM_BAG_SLOTS do for sn=1,GetContainerNumSlots(bn) do iid=GetContainerItemID(bn,sn); if iid then SendChatMessage(select(2,GetItemInfo(iid)),"WHISPER","nil",GetUnitName("player")); if sn==10 then break; end end end end end