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

Auction plug-in,

Orlok

Member
Joined
Mar 3, 2013
Messages
184
Reaction score
4
Any ideas for an auction plug-in? Automatically bids for you for items that you were outbid on... finds lowest timers, ect...?
 
I know at least 5 ppls, who already done plugins like this, but they dont public it, becouse with auction you can farm much more gold, that with all another ways
 
I know at least 5 ppls, who already done plugins like this, but they dont public it, becouse with auction you can farm much more gold, that with all another ways

I know you all have your hands full but this is one thing that makes me sad.
You release a bot and makes money by selling it. You know that playing the auction house is the best moneymaker and still you dont release a script for it, and thats just to let you and the serious botters to get a head start.
Im sure you guys can make a simple auction script pretty easy if you like.

Just want to add that this is not an angry complaint just an little sad puppy Biocide sitting in a corner crying. :)
 
You release a bot and makes money by selling it. You know that playing the auction house is the best moneymaker and still you dont release a script for it, and thats just to let you and the serious botters to get a head start.
I think, that public free plugin for auction make this way of earning useless
 
I think, that public free plugin for auction make this way of earning useless

I agree with you and that goes for most things the bot can do. Right?
Mining: you dont want anyone else to steal your veins.
Logging: Dont steal my wood, girl!!!
Mob grinding: Hey, go away bot this spot is mine.

My last words in this discusson is:
Make up your mind. Sell the bot and release plugins or dont sell the bot and keep the plugins private.
I can understand that you make the most money this way but dont stand there all suprised when the buyers starts to complain.

Biocide out.
 
I agree with you and that goes for most things the bot can do. Right?
Nope. 100 bots that mining on all servers cant do nothing to economy.
But 100 perfect auction bots just will fight with themselves, in attempts to purchase same items.
1 auc bot = 100% profit.
10 auc bots = 10% profit.
100 bots = 1% profit.

Make up your mind. Sell the bot and release plugins or dont sell the bot and keep the plugins private.
No one is forcing you to buy our product. You can do your own\ use another bots or dont bot in AA.
 
@Out,

I can't seem to find the auction(item) function on the API page, any idea?
 
I can't seem to find the auction(item) function on the API page, any idea?
I make simple example today. How to search\bid here
 
I make simple example today. How to search\bid here


great, looping through AuctionRequestParams seemed straight forward enough, unless I'm blind, does MakeAuctionLot also commits the auction?
 
At least I could find everything I needed to make an AH bot in the API, it's all there in the Core/AuctionParams/AuctionItem classes.
 
Just one thing to note for everyone who attempting to boting on auction:

PLZ don't buyout dempings, make an exception like :

Code:
if ( .... conditions .... && (AucItemsList[j].item.count > 1))
{ .... buyout ... }

More alive dempings = more profit for everyone.

Thanks!
 
Last edited:
Just one thing to note for everyone who attempting to boting on auction:

PLZ don't buyout dempings, make an exception like :

Code:
if ( .... conditions .... && (AucItemsList[j].item.count > 1))
{ .... buyout ... }

More alive dempgins = more profit for everyone.

Thanks!

Dempings means last item on ah?
 
Have fun...

Code:
 AuctionRequestParams req = new AuctionRequestParams(AuctionCategory.Archium, 0, 0, "Starlight Archeum Crystal", false, ItemGrade.Common, AuctionSortType.Time, SortOrder.Asc);
                List<AuctionItem> items = getAuctionBuyList(req, 10);
                foreach (AuctionItem item in items)
                {
                        Log("ItemName: " + item.item.name +
                            " <=> Seller: " + item.sellerName +
                            " <=> Start Bid Price: " + item.sellPrice +
                            " <=> Buy Now Price: " + item.buyBackPrice +
                            " <=> Last bidder: " + item.bidderName +
                            " <=> Item Bid: " + item.bidMoney +
                            " <=> Time Left " + item.time +
                            " <=> Amount: " + item.item.count);
                    }
                }
 
Can you explain what this do? We need configure or do something special?

Thanks you so much for the work
 
This is creating a list of the 10 ending soon for Starlight Archeum crystal then log the seller name, the start bid price, the buy now price, the last bidder, the item bid , the time left , the item quantity

It is not something usable for casual player but it is all what is needed for people who knows coding to make auction bot for themselves
 
Last edited:
Back
Top