Provide more detailed info when selling #12

Merged
atomaka merged 1 commit from more-sell-info into master 2021-02-21 11:44:11 -05:00
Showing only changes of commit 37b991426b - Show all commits

View file

@ -153,15 +153,21 @@ function MyAddon.needsRepair()
end
function MyAddon.sellGrayItems()
sellTotal = 0
for bag = 0, NUM_BAG_SLOTS do
for slot = 1, GetContainerNumSlots(bag) do
local name = GetContainerItemLink(bag, slot)
if name and string.find(name, "ff9d9d9d") then
print("Selling "..name)
local _, count, _, quality, _, _, link = GetContainerItemInfo(bag, slot)
if quality and quality == 0 then
local price = select(11, GetItemInfo(link))
sellTotal = sellTotal + (price * count)
print("Selling "..count.."x"..link)
UseContainerItem(bag, slot)
end
end
end
if sellTotal ~= 0 then
print("Made "..GetCoinTextureString(sellTotal))
end
end
function MyAddon.amTankInParty()