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

No way to make bot buy from auction?

Status
Not open for further replies.

Brynjar

New Member
Joined
Feb 23, 2016
Messages
4
Reaction score
0
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.
 
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:
Status
Not open for further replies.
Back
Top