[AddOn] Aux - Enhanced Auction House Interface

Re: [AddOn] Aux - Enhanced Auction House Interface

by Bit » Sun Mar 20, 2016 10:18 pm

Rosenwyn wrote:Is it possible to import Sell Value addon price database to Aux? (maybe just copypaste from one .lua to another)


Code: Select all
/run for name, unit_price in SellValues do if Aux.item_cache.item_id(name) then aux_merchant_sell[Aux.item_cache.item_id(name)] = unit_price end end

Might work, but only for items that are in your wdb cache (because aux uses ids as indices rather than names and otherwise I can't convert)

Can you try and find out what the incompatibility is with for the profession reagent price label?

edit: made tooltips a bit less verbose and changed the alt-click shortcut for searching itemlinks from chat to right-click.

WARNING: You need another /aux clear item cache and /reload after upgrading from 2.8.x to 2.9.0.
Bit
Sergeant Major
Sergeant Major
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Rosenwyn » Mon Mar 21, 2016 7:16 am

Bit wrote:
Rosenwyn wrote:Is it possible to import Sell Value addon price database to Aux? (maybe just copypaste from one .lua to another)


Code: Select all
/run for name, unit_price in SellValues do if Aux.item_cache.item_id(name) then aux_merchant_sell[Aux.item_cache.item_id(name)] = unit_price end end

Might work, but only for items that are in your wdb cache (because aux uses ids as indices rather than names and otherwise I can't convert)

Thank you, I'll try this later, when my wdb cache will be big enough )

Bit wrote:
Rosenwyn wrote:Can you try and find out what the incompatibility is with for the profession reagent price label?

I don't know why, but tomorrow there is no incompatibility at all. I've opened Advanced Tradeskill Window addon without any errors.
User avatar
Rosenwyn
Grunt
Grunt
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Bit » Mon Mar 21, 2016 10:33 am

Rosenwyn wrote:I don't know why, but tomorrow there is no incompatibility at all. I've opened Advanced Tradeskill Window addon without any errors.

Actually there was a bug but it had nothing to do with incompatibility, it's fixed now. Apparently the itemlinks are nil first when you select an entry where a reagent is not in your wdb yet, only found out about it after clearing my own wdb.
Bit
Sergeant Major
Sergeant Major
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Rosenwyn » Mon Mar 21, 2016 10:43 am

I see. Thank you one more time!
User avatar
Rosenwyn
Grunt
Grunt
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Bit » Mon Mar 21, 2016 11:39 am

For those who would like to import the informant database into aux (need to have informant running):

Buy
Code: Select all
/run for id=1,30000 do local i=Informant.GetItem(id) if i and i.buy and i.buy > 0 and getn(i.vendors or {}) > 0 then aux_merchant_buy[id] = (i.buy / max(1, i.quantity))..'#'..i.limited end end


Sell
Code: Select all
/run for id=1,30000 do local i=Informant.GetItem(id) if i and i.sell then aux_merchant_sell[id] = i.sell / max(1,i.quantity) end end
Last edited by Bit on Mon Mar 21, 2016 7:19 pm, edited 5 times in total.
Bit
Sergeant Major
Sergeant Major
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by zxcqwerty » Mon Mar 21, 2016 1:09 pm

there is a bug, if you want to buy 2 things from one person, it is necessary to switch to another lot to do it again
zxcqwerty
Tester
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Bit » Mon Mar 21, 2016 1:37 pm

zxcqwerty wrote:there is a bug, if you want to buy 2 things from one person, it is necessary to switch to another lot to do it again

I don't understand, can you explain in more detail?
Bit
Sergeant Major
Sergeant Major
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by zxcqwerty » Mon Mar 21, 2016 2:28 pm

Bit wrote:I don't understand, can you explain in more detail?

to buy lots of one person, one by one, you need to switch to another vendor exhibition
zxcqwerty
Tester
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by zxcqwerty » Mon Mar 21, 2016 2:30 pm

you bought the first lot of one seller, when you press the buy button, goods of the same person, nothing happens
zxcqwerty
Tester
 

Re: [AddOn] Aux - Enhanced Auction House Interface

by Bit » Mon Mar 21, 2016 2:40 pm

zxcqwerty wrote:you bought the first lot of one seller, when you press the buy button, goods of the same person, nothing happens

I don't have that issue. Are you sure it's caused by Aux? Can you try both disabling aux to ensure that and if yes disabling other addons to see if it might be a conflict of some sort?




edit: improved the informant import scripts, they were doing only a partial import before.
edit2: hopefully final fix for the informant import scripts viewtopic.php?f=63&t=21102&p=274871#p274684
Bit
Sergeant Major
Sergeant Major
 

PreviousNext

Return to Addons & macros