Runes of Magic Wiki
Advertisement

Checks if the current search result can browse to a given page If you want to browse to the next page of auctions you want to use AuctionNextPage

For some odd reason this command issues a AUCTION_BROWSE_UPDATE event and after the "search" the AUCTION_SEARCH_RESULT event.

So if you're iterating through a auction search result it is really slow to first check if the page exists with this function and then call Auction AuctionNextPage. See AuctionNextPage for an example on how to iterate over a Auction search result.

Parameters[]

Arguments[]

pageNr
Int - The Pagenumber in the current result

Returns[]

bool - If the page exists or not

Examples[]

Check if page 2 exists:

AuctionBrowseNextPage(2) -- Returns either true if it exists or false if not
Advertisement