Originally Posted by
ChuiChu
are you guys still finding issues with the accuracy of d3 auction log? i'd really prefer to use that one, it has all the necessary info + tooltips.
i don't see bugs with auction log for several month but i don't understand how to use this log correctly. with haSendToStash() you have only new portion of items/gold that u log to database. with auction log and function like haLogIterate() you need some algorithm to understand that this item is already logged and you need to stop. but with that tool i can use such script:
Code:
while haSendToStash() do
item=haItem()
while haLogIterate() do
item2=haItem()
if item.name==item2.name and item.sale==item2.sale and item.cash==item2.cash and item.xtime==item2.xtime then
hash=item2.hash
break
end
end
print(hash)
end
so auction log may be realy good way to solve this problem