Download
(315Kb)
Download
Updated: 04-09-20 12:08 PM
Pictures
File Info
Compatibility:
Classic Patch (1.13.4)
Classic Patch (1.13.3)
Classic (1.13.2)
Updated:04-09-20 12:08 PM
Created:05-26-19 11:00 PM
Downloads:785,335
Favorites:412
MD5:
Categories:Classic - General, Auction House & Vendors

Auctionator ClassicFix  Popular! (More than 5000 hits)

Version: 100.0.4
by: damagepy, 1010101110

Simple Auction addon, makes it easier to search, buy, and post auctions.

Buy Tab: Search, Summary for multiple items, Search history, Shopping lists, buy stacks quickly with buy button, sort by item price
Sell Tab: Post multiple auctions, Custom stack size, See item current auctions and history, Undercut settings
Tooltips: Vendor, Auction, Disenchant, Reagents, Stack prices
Scanning: Full scan AH in seconds to save auction history / prices

We are not the original author, this is modified/fixed/updated to work in Classic.

you can report issues on github

Optional Files (0)


Post A Reply Comment Options
Unread 05-28-19, 05:09 AM  
Passed
A Kobold Labourer

Forum posts: 0
File comments: 7
Uploads: 0
Lua Error entering 2g as buyout

Message: Interface\AddOns\VendorPrice\VendorPrice.lua:9: Usage: GetItemInfo(itemID|"name"|"itemlink")
Time: Tue May 28 07:08:35 2019
Count: 1
Stack: Interface\AddOns\VendorPrice\VendorPrice.lua:9: Usage: GetItemInfo(itemID|"name"|"itemlink")
[C]: in function `GetItemInfo'
Interface\AddOns\VendorPrice\VendorPrice.lua:9: in function <Interface\AddOns\VendorPrice\VendorPrice.lua:7>
[C]: ?
[C]: ?
[C]: ?
[C]: in function `SetAuctionSellItem'
Interface\AddOns\Auctionator\Auctionator.lua:1218: in function `Atr_GetSellItemInfo'
Interface\AddOns\Auctionator\Auctionator.lua:3113: in function `Atr_SetDepositText'
Interface\AddOns\Auctionator\Auctionator.lua:3073: in function `Atr_UpdateUI_SellPane'
Interface\AddOns\Auctionator\Auctionator.lua:3010: in function `Atr_UpdateUI'
Interface\AddOns\Auctionator\Auctionator.lua:2848: in function `Atr_Idle'
Interface\AddOns\Auctionator\Auctionator.lua:2797: in function `Atr_OnUpdate'
[string "*:OnUpdate"]:1: in function <[string "*:OnUpdate"]:1>

Locals: (*temporary) = nil
Report comment to moderator  
Reply With Quote
Unread 08-28-19, 10:11 AM  
Ketho
A Pyroguard Emberseer
 
Ketho's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1026
File comments: 213
Uploads: 52
Re: Lua Error entering 2g as buyout

Originally Posted by Passed
Message: Interface\AddOns\VendorPrice\VendorPrice.lua:9: Usage: GetItemInfo(itemID|"name"|"itemlink")

Should be fixed as of Vendor Price 1.0
Report comment to moderator  
Reply With Quote
Unread 09-01-19, 12:13 PM  
ObscureScience
A Deviate Faerie Dragon

Forum posts: 10
File comments: 81
Uploads: 0
I don't know what this means. Is there a conflict with Arkinventory?

Code:
3x Auctionator\AuctionatorHints.lua:515: Usage: GetItemInfo(itemID|"name"|"itemlink")
[C]: in function `GetItemInfo'
Auctionator\AuctionatorHints.lua:515: in function <Auctionator\AuctionatorHints.lua:513>
[C]: ?
[C]: in function `?'
...s\ArkInventoryClassic\ArkInventoryClassicTooltip.lua:853: in function `ReloadTooltipSetGeneric'
...s\ArkInventoryClassic\ArkInventoryClassicTooltip.lua:931: in function <...s\ArkInventoryClassic\ArkInventoryClassicTooltip.lua:901>
[C]: ?

Locals:
(*temporary) = nil
Report comment to moderator  
Reply With Quote
Unread 09-05-19, 03:38 AM  
Ultroman
A Murloc Raider

Forum posts: 6
File comments: 7
Uploads: 0
It doesn't like auctions where the item price gets to be below 1 copper, like when setting 200 Heavy Shot for sale for 1 silver. The button to start the auction keeps being greyed out. The vanilla auction tab works.
Report comment to moderator  
Reply With Quote
Unread 09-05-19, 11:20 AM  
Gome
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Tooltip prices didn't show up in trade skill windows but I found this old change from Auctionator github and it seems to work atleast in tailoring window now.

AuctionatorHints.lua
Lua Code:
  1. hooksecurefunc (GameTooltip, "SetTradeSkillItem",
  2.   function (tip, skill, id)
  3.     local link = GetTradeSkillItemLink(skill);
  4.     local num  = GetTradeSkillNumMade(skill);
  5.     if id then
  6.       link = GetTradeSkillReagentItemLink(skill, id);
  7.       num = select (3, GetTradeSkillReagentInfo(skill, id));
  8.     end
  9.  
  10.     Atr_ShowTipWithPricing (tip, link, num);
  11.   end
  12. );
Last edited by Gome : 09-05-19 at 11:43 AM.
Report comment to moderator  
Reply With Quote
Unread 09-06-19, 08:20 AM  
Phantasia
A Murloc Raider

Forum posts: 4
File comments: 5
Uploads: 0
Thanks for this.
Worked perfectly for me on Blacksmithing.

Originally Posted by Gome
Tooltip prices didn't show up in trade skill windows but I found this old change from Auctionator github and it seems to work atleast in tailoring window now.

AuctionatorHints.lua
Lua Code:
  1. hooksecurefunc (GameTooltip, "SetTradeSkillItem",
  2.   function (tip, skill, id)
  3.     local link = GetTradeSkillItemLink(skill);
  4.     local num  = GetTradeSkillNumMade(skill);
  5.     if id then
  6.       link = GetTradeSkillReagentItemLink(skill, id);
  7.       num = select (3, GetTradeSkillReagentInfo(skill, id));
  8.     end
  9.  
  10.     Atr_ShowTipWithPricing (tip, link, num);
  11.   end
  12. );
Report comment to moderator  
Reply With Quote
Unread 09-08-19, 09:00 AM  
Gome
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
This adds prices to reagent tooltips in enchanting window which is different from the other tradeskills, but I could not figure out how to get them show properly in craft result items like Wands inside the enchanting window. If someone wants to figure it out look into SetCraftSpell and GetCraftItemLink.

AuctionatorHints.lua
Lua Code:
  1. hooksecurefunc (GameTooltip, "SetCraftItem",
  2.   function (tip, skill, id)
  3.     local _, _, num = GetCraftReagentInfo(skill, id);
  4.     Atr_ShowTipWithPricing (tip, GetCraftReagentItemLink(skill, id), num);
  5.   end
  6. );
Last edited by Gome : 09-08-19 at 12:09 PM.
Report comment to moderator  
Reply With Quote
Unread 09-09-19, 11:24 AM  
Shaun Dreclin
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Could you add support for searching with sub-sub-categories? Like Armor/Cloth/Back instead of just Armor/Cloth
Report comment to moderator  
Reply With Quote
Unread 09-09-19, 04:47 PM  
qwksilver
A Kobold Labourer

Forum posts: 0
File comments: 48
Uploads: 0
Observation

It is my observation that there isn't a way to set match lowest on low price items.
I've set all my other markdowns to 0, but it doesn't work on the lowest price items.
I would also like to see the default undercut at 0, just so the app users that just click and go won't do what I'll describe next.

I've also noticed that because of this, and I presume the number of hardcore auction sellers out there, that 1 copper undercut has taken many many items down in vendor is better range. I don't know if this trend is happening on other servers, but I know each time I post it tries to beat the lowest guy by 1c.

I really like the posting interface otherwise, but I feel that trying to run this and auctioneer side by side would break something. So for now at lest auctioneer wins, even if it is a bloated warthog of way more than I want/need, but I thought I would share my biggest reason for choosing elsewhere.
Report comment to moderator  
Reply With Quote
Unread 09-11-19, 01:01 PM  
Betonz
A Kobold Labourer

Forum posts: 0
File comments: 85
Uploads: 0
Thanks!

Thanks for fixing this.
Its my fav auction addon.
I will test it and see if it works properly.
Last edited by Betonz : 09-12-19 at 01:11 AM.
Report comment to moderator  
Reply With Quote
Unread 09-13-19, 03:58 PM  
damagepy
A Kobold Labourer
 
damagepy's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 21
Uploads: 7
Re: Thanks!

I have no plan to add features to the addons that I fixed, I just made them work in Classic.
If the original author or someone else can't do it then I have no time to maintain 6+ addon while playing WoW
Report comment to moderator  
Reply With Quote
Unread 09-19-19, 02:13 PM  
bonytony
A Fallenroot Satyr
 
bonytony's Avatar

Forum posts: 22
File comments: 13
Uploads: 0
I seem to frequestly get internal auction database errors when using this, and can't use the auction house until I restart the window. It also will not scan the auction house, seems to go for about a minute, then stops, and doesnt seem to have any info after.

I know this was just a quickfix, and you have a lot of other addons to manage, but thought I would post my findings.
Report comment to moderator  
Reply With Quote
Unread 09-24-19, 08:04 AM  
alexfg24
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Suggestion

Sorry for my English.
I think it is necessary to make it so that if the selling price is lower than the vendor's price, this price would stand out in color. Given the pledge of the auction, of course.
Report comment to moderator  
Reply With Quote
Unread 09-26-19, 08:49 PM  
FrostyLlama
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Audio notification when auction sold?

Just wondering if anyone would know how to make it so an audio notification will play whenever an auction sells. I didn't see any such option anywhere within WoW or Auctionator.
Report comment to moderator  
Reply With Quote
Unread 09-30-19, 01:59 AM  
Photekz
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
Re: Re: Thanks!

Originally Posted by damagepy
I have no plan to add features to the addons that I fixed, I just made them work in Classic.
If the original author or someone else can't do it then I have no time to maintain 6+ addon while playing WoW
Any chance you know how to fix this? It stops happening when I disable Auctionator.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: