Coder Social home page Coder Social logo

Comments (3)

shirsig avatar shirsig commented on July 30, 2024

Hey. I know about beancounter/tsm accounting. The thing is, even though it comes bundled with auctioneer/tsm, because of the way the API works, this isn't really an auction house addon but more of a mailbox/tradeframe addon and I can't think of a good reason to build it into aux. The autumn semester's just started so I won't have time for it in the near future but I guess I could make an addon like that at some point. What's wrong with beancounter though, can't you use that?

from aux-addon.

cnolimes avatar cnolimes commented on July 30, 2024

Well, beancounter often fails to register the mails I'm opening. Using Postal btw

from aux-addon.

shirsig avatar shirsig commented on July 30, 2024

I don't think it's a good fit for aux as like I said it's more of a mailbox addon and also there's no reason to show it only at the auction house like aux.

In case someone else wants to make something like this here's what I think is the only way to reliably retrieve this information in combination with an auto opening addon:

local index
CreateFrame('Frame', InboxFrame):SetScript('OnUpdate', function()
	if index then
		if GetInboxInvoiceInfo(index) then
			local invoiceType, itemName, playerName, bid, buyout, deposit, consignment = GetInboxInvoiceInfo(index)
			local _, _, count = GetInboxItem(index)
			-- do stuff
			index = nil
		end
	else	
		for i = 1, GetInboxNumItems() do
			local _, _, _, _, _, _, _, _, read = GetInboxHeaderInfo(i)
			if not read then
				GetInboxText(i)
				index = i
				return
			end
		end
	end
end)

from aux-addon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.