Jump to content

shirsig

Player
  • Content count

    288
  • Joined

  • Last visited

Everything posted by shirsig

  1. shirsig

    [AddOn] aux and more

    Hey, it's no longer called aurae. delete the folder and install fresh.
  2. shirsig

    [AddOn] aux and more

    yes, hopefully it should be fixed in the newest version
  3. shirsig

    [AddOn] aux and more

    Death coil should be tracked but there was a bug in that it wasn't considered a projectile.
  4. shirsig

    [AddOn] aux and more

    I'm not sure I understand. Which new addon?
  5. shirsig

    [AddOn] aux and more

    Actually I just removed dots in the newest version, now cc only :( Also renamed it back to ccwatch. But yeah that's a feature. Once a bar is placed it stays there until it fades.
  6. shirsig

    [AddOn] aux and more

    Postal is now completely localized. The inbox interface changed slightly so that I could use blizzard's predefined localized text.
  7. Scale shouldn't affect this (at least doesn't for me). It happens when you use a custom font that is too large for the buttons.
  8. shirsig

    I am looking for addon! Need help.

    It's "vendor sell" without the dash. http://i.imgur.com/RBRT5gL.png
  9. shirsig

    Fresh Server Pvp-Set

    Blizzard kept releasing new servers throughout vanilla and they started with the gear upgrades of the active patch at that time afaik so I see no reason to ever bother with the shitty pre 1.4 itemization for the purpose of being blizzlike.
  10. shirsig

    [AddOn] aux and more

    You mean really all or only highlvl? You can always do a multi item query like x/exact;y/exact;z/exact. Whether it's more efficient than yours depends on if they return full pages and how many other auctions there are in the category.
  11. shirsig

    [AddOn] aux and more

    Yeah, sorry, I've changed the repo name now. (the -master still needs to be removed as always)
  12. Yes, the scan time is mostly determined by the client only allowing you to obtain a page every 4 or 5 seconds (much slower than in retail even without the get all scan), but aux shows you the results as they come in during the scan, so you can buy good deals immediately, not only after the ~1 hour scan. I mean, the really good deals usually stay up for at most a few minutes or even just seconds. They'll be long gone when the auctioneer scan finishes and you finally get to look at the data.
  13. shirsig

    [AddOn] aux and more

    This is a bug in some libraries used by other addons: https://github.com/Aviana/LunaUnitFrames/issues/145
  14. shirsig

    [AddOn] aux and more

    This addon will import vendor prices into aux: https://github.com/shirsig/aux-merchant-prices It is based on a tbc informant database and should include also vanilla items from aq and later.
  15. shirsig

    Help me identify these addons

    I think the one with the green bars is mine: https://github.com/shirsig/aurae (Configure with /aurae)
  16. shirsig

    [AddOn] aux and more

    This has been requested before. So far I've come up with what I think is the only reliable way to get the information in combination with fast automatic mail opening (what beancounter does is a mess). Don't think it makes much sense to make it part of aux though as it's basically a mailbox addon, not an auction house addon. Also, no idea what to do with the data and how to display it, and I hate designing GUIs. 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)
  17. shirsig

    10 - 19 Thread

    Reported some twink related quest bugs, please upvote: https://elysium-project.org/bugtracker/issue/967
  18. shirsig

    8 Must Have Addons/Lua Tweaks Help

    Looks like you have some sort of custom font. The post tab makes you choose the bidding price because you should. The default auction house can only sort by bid stack price, so this is what decides how close to the top your auction appears when someone uses the default AH, which can be more important than undercutting in getting a sale.
  19. The average value has no protection against outliers whatsoever and every time you scan a "fake" auction with an insane price you have to manually reset it and the median is from too small a sample to even consider it historical. What's the point in looking for profit in data from an hour old auctioneer scan? This method works well on retail where you have the get all scan which takes a few seconds but not so much in vanilla. All the best deals will be already gone, and the more recent good deals will not have been scanned yet. Then when you wanna buy something auctioneer makes you wait for it to rescan all the pages for that item, only to tell you at the end that the auction doesn't exist anymore.
  20. Yes, but you see, auctioneer's numbers are just as magical and on top of that less accurate which is why I said it's misleading. Statistical values like a median, EMA etc. are only useful to compare when they're taken from the same data set and when you at least have some idea how this data set is even collected. Neither is true with auctioneer. Sample size is sort of important but only if you know how to interpret it with regard to the other values. If not it can even be harmful, giving you false security. First of all the sample size isn't even accurate because it doesn't count auctions with the same item, stack size and price separately. Then, auctioneer gives you two types of values: The first one which it misleadingly simply calls "median", although it really is a median, is taken from a very special data set of only about 30 values or something where when it overflows values are dropped depending on where the newest was inserted and the data points are based on individual auctions so it can easily be completely wiped in a single scan, so the way the data set is collected is much more important than it being a median. The second is an arithmetic mean of all auctions ever scanned, so a single large outlier can fuck it up essentially forever. As you can see for neither of them even a large sample size should instill a lot of confidence. For vendor prices you can import them with a script or copy the aux_merchant- variables from this file to your account wide savedvariable file: https://raw.githubusercontent.com/shirsig/stuff/master/Aux-Addon.lua
  21. What information are you missing exactly? Most of the "additional information" auctioneer gives you is pretty useless or even misleading afaik.
  22. OneBag, Bagnon, EngInventory. Also, this is built into pfUI.
  23. shirsig

    modui

    It seems something's causing this same issue in modui: https://github.com/Aviana/LunaUnitFrames/issues/145
  24. shirsig

    MrPlow

    There was a similar issue with luna: https://github.com/Aviana/LunaUnitFrames/issues/145 Not something I can fix in Clean Up. Best report it as a bug for modui.
  25. shirsig

    MrPlow

    Why wouldn't it be?
×