PDA

View Full Version : Auto-Selling Trash Loot


Vraiker
07-04-2005, 05:18 AM
I'm interested in making a script that will automatically sellback my trash (grey) loot when I access a vendor. I noticed that there aren't any sellback functions in the API and was wondering if I could use UseContainerItem() in this manner:


for bag = 0,4,1 do
for slot = 1, GetContainerNumSlots(bag) , 1 do
local _,_,_,quality,_ = GetContainerItemInfo(bag,slot);
if (quality == -1) then
UseContainerItem(bag,slot)
end
end
end


I looked around for an addon that already does this but was unable to find one, so if anyone has any tips on this code or can point me to an already working addon I would be much obliged.

Vraiker
07-06-2005, 03:44 AM
/shameless bump