Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: Thortok2000There's now a match utility module which works wonders. However, when your price is below vendor, all it does is[em]warn[/em]you, it doesn't adjust the price to vendor + deposit cost. Could we update the match module so it will never set the price below vendor + deposit?
if (price * (1 - markdown)) < vendor then
price = (vendor / (1 - markdown)) + 1
endPosted By: dineshmore likely you just want to set the bid price to that, and leave the BO price unaffected. I am not entirely sure that is possible in our framework.
price = ((vendor + deposit + 1) / (1 - markdown))if (price * (1 - markdown)) < (vendor + deposit) then
price = (vendor + deposit) / (1 - markdown)
endPosted By: Thortok2000Is there somewhere to get the 'more recent' version?
local matchArray = {}
matchArray.value = matchprice
matchArray.competing = competing
matchArray.diff = marketdiff
return matchArrayif (matchprice * (1 - markdown)) < (vendor + deposit) then
matchprice = (vendor + deposit) / (1 - markdown)
endlocal sig = strjoin(":", itemId, property, factor)
local deposit = GetDepositAmount(sig)
local markdown = math.floor(AucAdvanced.Settings.GetSetting("util.appraiser.bid.markdown") or 0)/100
local vendor = GetSellValue(hyperlink)
if (matchprice * (1 - markdown)) < (vendor + deposit) then
matchprice = (vendor + deposit) / (1 - markdown)
end
1 to 31 of 31