B Brynjar New Member Joined Feb 23, 2016 Messages 4 Reaction score 0 Feb 29, 2016 #1 As title says, i cannot find a method to make a bot purchase stuff off the auction house. I found a way to make bids, but not buy now. Is there no way to do it? Any help is very appreciated, ty in advance.
As title says, i cannot find a method to make a bot purchase stuff off the auction house. I found a way to make bids, but not buy now. Is there no way to do it? Any help is very appreciated, ty in advance.
Aeon Member Joined Mar 25, 2015 Messages 736 Reaction score 2 Feb 29, 2016 #2 Hi, if you make an Auction Bid at the buyout price, it will purchase it. Something like. PHP: int buyoutPrice = item.buyBackPrice; if (me.goldCount > buyoutPrice) { if (item.MakeAuctionBid(buyoutPrice)) { Log("Bought it!"); } } Last edited: Feb 29, 2016
Hi, if you make an Auction Bid at the buyout price, it will purchase it. Something like. PHP: int buyoutPrice = item.buyBackPrice; if (me.goldCount > buyoutPrice) { if (item.MakeAuctionBid(buyoutPrice)) { Log("Bought it!"); } }
B Brynjar New Member Joined Feb 23, 2016 Messages 4 Reaction score 0 Mar 1, 2016 #3 I see, ty very much
Aeon Member Joined Mar 25, 2015 Messages 736 Reaction score 2 Mar 1, 2016 #4 Brynjar said: I see, ty very much Click to expand... You're welcome