Auctionator

Auctionator

141M Downloads

Full scan not scanning past first page

ceylina opened this issue ยท 2 comments

commented

Full scan (not slow scanning) is only returning 50 auctions scanned. Meaning it is only scanning the first page and not the entire AH.

commented

minor change was done to QueryAuctionItems.

Here is what I tried that got a successful scan (matched with GetNumAuctionItems("list")

in AuctionatorScanFull.lua

Line 93

change

QueryAuctionItems ("", nil, nil, 0, nil, nil, false, false, nil);

to

QueryAuctionItems( "", nil, nil, 0, 0, 0, false, false, nil )

and change line 143 (could be 144)

QueryAuctionItems ("", nil, nil, gSlowScanPage, nil, nil, false, false, nil)

to

QueryAuctionItems( "", nil, nil, gSlowScanPage, 0, 0, false, false, nil )

commented

This has been updated in the most recent build, closing.