Jump to content

Recommended Posts

Sorry.

 

I use ElvUI interface and my bag has a button for sell gray items without vendor or tundra mamut.

 

I thought that option is also in normal UI, but i'm searching now in normal ui and i can't found :_( 

 

Maybe you can investigate this ui and add this option in bot :)

 

I link you a screenshot of my UI and mark button I use for sell gray items

 

http://imageshack.com/a/img674/3859/PDuS6I.jpg

 

Thanks a lot.

Link to comment
https://wrobot.eu/forums/topic/1706-fast-sell/#findComment-8532
Share on other sites

This button works same if not vendors near your character?
 
It is the code used in your addon:
local c = 0
for b=0,4 do
	for s=1,GetContainerNumSlots(b) do
		local l = GetContainerItemLink(b, s)
		if l and select(11, GetItemInfo(l)) then
			local p = select(11, GetItemInfo(l))*select(2, GetContainerItemInfo(b, s))
			if select(3, GetItemInfo(l))==0 and p>0 then
				UseContainerItem(b, s)
				PickupMerchantItem()
				print(GetItemInfo(l));
				c = c+p
			end
		end
	end
end

But this does not works for me if not vendor near.

Link to comment
https://wrobot.eu/forums/topic/1706-fast-sell/#findComment-8533
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...