Also on AOL
- Autos
- Technology
- Lifestyle
- Gaming
- Finance
- Entertainment on AOL
- Lifestyle on AOL
- Sports on AOL
- Travel on AOL
- More on AOL
Featured Galleries
Joystiq
© 2013 AOL Inc. All rights Reserved. Privacy Policy | Terms of Use | Trademarks | AOL A-Z HELP | About Our Ads

Reader Comments (Page 1 of 1)
4-10-2009 @ 12:57PM
jafari said...
This macro's been floating around the interwebs for years, so I don't know who to credit. You just click it with a vendor window open.
Unlike some addons, the macro WILL NOT sell anything that is not grey-- the "ff9d9d9d" is the code for grey color in the text.
All it does is find every grey item in your bags and "right-click" them, and give a chat message only you can see telling you "Selling [your grey item]". So if you have a vendor window open, that sells all the grey items. If you don't have a vendor window open, it right-clicks them all, and could equip a grey armor scrap or [The Stoppable Force].
/script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"ff9d9d9d") then DEFAULT_CHAT_FRAME:AddMessage("Selling "..name); UseContainerItem(bag,slot) end; end; end
Reply