hechie wrote:am i the only one who cannot see the Vendor prices i tried to use the tooltip code but did not help
/aux tooltip vendor buy
/aux tooltip vendor sell
Make sure you have informant and enhtooltip enabled:
Vendor buy price:
/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
Vendor sell price:
/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/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