What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Professionbuddy searching for auctions not working

braniac8472

Member
Joined
Jun 12, 2015
Messages
174
Reaction score
1
Any eta on the LUA for querying the AH in PB getting updated?

seems like a very easy fix

Code:
<BuyItemFromAH ItemListType="Item" ItemID="58488" MaxBuyout="501g0s0c" Amount="20" BuyAdditively="True" AutoFindAh="True" BidOnItem="False" Location="0, 0, 0" />

http://wowwiki.wikia.com/wiki/API_QueryAuctionItems
 
Last edited:
PB doesnt give any errors at all and it doesn't log the LUA its using not even if i set it to diagnostic.

It basically just queries the entire AH instead of searching for a specific item which is cause of the LUA change in API_QueryAuctionItems

Interacting with Auctioneer Xifa (Unit Id: 44868)
PB Warning: Failed to open Unknown frame at Auctioneer Xifa
PB Debug - Buy Item From AH @line:40: Queueing server for Item: 58488
PB Debug - Buy Item From AH @line:40: Searching AH for Potion of Treasure Finding
Activity: Querying server for names of items to buy on the AH
Activity: Looking to buy items on AH
PB Debug - Buy Item From AH @line:40: Bought Potion of Treasure Finding x0

i already did the change on my profiles, the lua needs to be changed from

Code:
Lua.DoString("QueryAuctionItems(\"" + itemName+ "\",nil,nil,nil,nil,nil," + currentQueryPage + ")");

to

Code:
Lua.DoString("QueryAuctionItems(\"" + itemName + "\",nil,nil,"+ currentQueryPage +",nil,nil,nil,1,nil)");

please note that the "1" in the second code is the new exactMatch parameter
 
the log file is required tho even if you cant see any issues on it,we can
 
Back
Top