Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show deposit price #7

Open
kemayo opened this issue Dec 1, 2016 · 4 comments
Open

Show deposit price #7

kemayo opened this issue Dec 1, 2016 · 4 comments

Comments

@kemayo
Copy link

kemayo commented Dec 1, 2016

The price of the deposit for an item often affects whether I want to put it up for auction. Add it to the item tooltip next to the buyout price it'll list at?

@tekkub
Copy link
Member

tekkub commented Dec 1, 2016

The deposit is still a thing? Man, I haven't even thought about that since, what, Wrath?

How does one even compute it these days?

@kemayo
Copy link
Author

kemayo commented Dec 1, 2016

Hm, having looked into it, I guess it's CalculateAuctionDeposit, but that only works when you've actually got an item sitting in the auction slot.

It does seem to be totally calculable: 15% of vendor-sell-price per 12 hours of auction time (or 75% of vendor at the neutral AH).

i.e....

function CalculateAuctionDepositManually(item, stackSize, runTime, isNeutral)
    -- runTime: 1: 12h, 2:24h, 4:48h
    local sellPrice = select(11, GetItemInfo(item))
    return (isNeutral and 0.75 or 0.15) * runTime * sellPrice * stackSize
end

As you might imagine, it mostly impacts my decision making process when I'm considering auctioning relatively high sell-price greens which have a chance of selling to transmog hunters / enchanters, but might take several listings to work out.

@tekkub
Copy link
Member

tekkub commented Dec 3, 2016

or 75% of vendor at the neutral AH

The neutral AH is no longer a thing, there is but a single cross-faction AH on each realm now.

Is it only transmog greens where you're considering this? I personally list them for a weekend and then crush anything that doesn't sell on monday. At least on my realms, the dust value is closer to the intact AH price than the vendor price, so I'm at least coming out a little bit ahead.

@kemayo
Copy link
Author

kemayo commented Dec 3, 2016

The neutral AH is no longer a thing, there is but a single cross-faction AH on each realm now.

I'm going to admit, I blindly trusted potentially-dated wiki articles about that being relevant.

Is it only transmog greens where you're considering this?

Mostly, yeah. It occasionally comes up on random old mats if I decide to do something like clear MC and see what sells, since e.g. Dark Iron Residue is going for 1.10g/stack on my server, with a 0.6g deposit. But that's more niche.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants