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

Is AuctionItem always updated

Syllae

New Member
Joined
Sep 23, 2014
Messages
29
Reaction score
0
Hi there,

Already asked the question on IRC, but I remain uncertain.

Is an AuctionItem always updated ?

For exemple :
Code:
Log(item.bidderName)
item.MakeAuctionBid(10)
Log(item.bidderName)

will the output be:
Name1
Me

?

Thanks !
 
You need update it again with getAucList.
 
So if I get it right this should work :

Code:
item = getAuctionBuyList(req, 1);
Log(item.bidderName);
item.MakeAuctionBid(10);

getAuctionBetList();
Log(item.bidderName);

Are should I parse the result of getAuctionBetList again ?

Thanks !
 
Are should I parse the result of getAuctionBetList again ?
Yes. If you use auc ingame - you press find, see list of items. This list dont update with time - you need again press find and again check results
 
Back
Top