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

Open Auction House Bot

ok can you give me an example of what you would write say i wanted to buy log for 2 silver each and say i wanted to buy vocation tonic for 5 gold 50 silver.

PHP:
buyFromAuctionHouse("Log", 200, 2); // minimum amount set to 2
buyFromAuctionHouse("Vocation Tonic", 550, 1); // minimum amount set to 1
 
PHP:
buyFromAuctionHouse("Log", 200, 2); // minimum amount set to 2
buyFromAuctionHouse("Vocation Tonic", 550, 1); // minimum amount set to 1

That vocation tonic is 5s 50c not 5g 50s.
Correct would be:
PHP:
buyFromAuctionHouse("Vocation Tonic", 55000, 1); // minimum amount set to 1
 
Jesus! pls keep the great work up!!, the counter bot i wrote for this bot is getting me more and more, the more peps use this (i wander who lost the 2000 i made yesterday on Ollo)

/bow
 
Last edited:
Jesus! pls keep the great work up!!, the counter bot i wrote for this bot is getting me more and more, the more peps use this (i wander who lost the 2000 i made yesterday on Ollo)
/bow

This is nonsense of course. There cannot be a "counter bot" to this one since there are no preconfigured items (only azalea and lotus with very low prices for demonstration) and you can change the bidding behavior with the variables.

Does this plugin only buy out auctions or will it bid as well?

It will also attempt to bid right before the auction ends (when exactly can be configured in milliseconds).
 
Im a newby at this dont know how to install the plugin
I followed this steps
Create a "Actionhouse" folder inside your plugin folder
Open the build-in "Plugin Editor"
Click on "Select folder that contains plugin" and select the "LazyTrader" folder
Click "New file"
Copy & Paste my code from Pastebin
Save & Compile

But when i press compile it says
12:21:27 a.m.: d:\Archebuddy\Plugins\ActionerBot\Actionhousebot.cs(165,1) : error CS0116: A namespace cannot directly contain members such as fields or methods
 
Im a newby at this dont know how to install the plugin
I followed this steps
Create a "Actionhouse" folder inside your plugin folder
Open the build-in "Plugin Editor"
Click on "Select folder that contains plugin" and select the "LazyTrader" folder
Click "New file"
Copy & Paste my code from Pastebin
Save & Compile

But when i press compile it says
12:21:27 a.m.: d:\Archebuddy\Plugins\ActionerBot\Actionhousebot.cs(165,1) : error CS0116: A namespace cannot directly contain members such as fields or methods

Try opening notepad, paste the code there and save as Auctionhousebot.cs in your D:\Archebuddy\Plugins\ActionerBot\ folder, then try to open that file in your plugin editor and compile it.
 
Hi "lypnn", thanks for your money generator :-)
cud you please do litle improve in your plugin:

1 - If system try bid for something is posible to create cooldown... 10s scale and last 10 sec for 1s scale....
2 - Mamy bids is done vith player in las two sec. is posible to check the actual price before system try bid in last sec...

Many thanks...
 
I don't understand how this bot can be making money for anyone with anything except bidding - first = sorting by time gives you only the oldest auctions, second with buylist req = 0 it goes through the whole list of criteria very slowly, which makes it REALLY slow ^^ am I missing something here ? :)
 
When i add this at the end of the code (example)

buyFromAuctionHouse("Log", 200, 2); // minimum amount set to 2
buyFromAuctionHouse("Vocation Tonic", 550, 1); // minimum amount set to 1

And try to compile it, i get 12:21:27 a.m.: d:\Archebuddy\Plugins\ActionerBot\Actionhousebot.c s(165,1) : error CS0116: A namespace cannot directly contain members such as fields or methods
 
When i add this at the end of the code (example)

buyFromAuctionHouse("Log", 200, 2); // minimum amount set to 2
buyFromAuctionHouse("Vocation Tonic", 550, 1); // minimum amount set to 1

And try to compile it, i get 12:21:27 a.m.: d:\Archebuddy\Plugins\ActionerBot\Actionhousebot.c s(165,1) : error CS0116: A namespace cannot directly contain members such as fields or methods

Don't add your buyFromAuctionHouse lines at the end of the program. Instead put them where it says: "// add more items here"

I don't understand how this bot can be making money for anyone with anything except bidding - first = sorting by time gives you only the oldest auctions, second with buylist req = 0 it goes through the whole list of criteria very slowly, which makes it REALLY slow ^^ am I missing something here ? :)

This plugin works as buyout and bidding automation because thats what the other plugin did (which thread is now closed). If you want to do only the bidding, please change the first buylist to req = 9 as you propably figured out yourself already.

getAuctionBuyList(req, 0); => getAuctionBuyList(req, 9);
 
Don't add your buyFromAuctionHouse lines at the end of the program. Instead put them where it says: "// add more items here"



This plugin works as buyout and bidding automation because thats what the other plugin did (which thread is now closed). If you want to do only the bidding, please change the first buylist to req = 9 as you propably figured out yourself already.

getAuctionBuyList(req, 0); => getAuctionBuyList(req, 9);
Hey! I am perfectly aware of that, however if I want to use the buyout function adequately won't it be best to sort by BET and not by time.. since this is losing so much time just scrolling through the pages lewl!^^ I doubt it ever buys anything... actually in its original state!
 
how to make run to Aurctioneer npc and press "F" ?
how get mail auto?
 
Hey! I am perfectly aware of that, however if I want to use the buyout function adequately won't it be best to sort by BET and not by time.. since this is losing so much time just scrolling through the pages lewl!^^ I doubt it ever buys anything... actually in its original state!

Without a doubt it is possible to make a better auction bot, but it will be much more work than just change the sorting. The plugin would have to save the auction item times to memory and look for items to buyout only when there is no bidding to be made.
 
Bot works.

Simple question here : Why don't you arrange the results from cheapest to most expensive and if results are > than maximum, swtich to next item ? This would... save.... a lot of time
 
Back
Top