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

[Development] Smarter's Auction BotBase

I'm hoping they will modify the way HB starts up, so that I could control WoW's Window with it, login, etc. As once it has the PID that should be all it needs :-\.

I wonder if there might be a workaround to "pause" hb and then run the auto log in as a seperate programme? then HB resumes once logged in?
I dont know enough to know how HB and IB get around loading windows for BG's and Instances, but i can only guess its something similar (pausing)
 
I wonder if there might be a workaround to "pause" hb and then run the auto log in as a seperate programme? then HB resumes once logged in?
I dont know enough to know how HB and IB get around loading windows for BG's and Instances, but i can only guess its something similar (pausing)

Quite possible, no other program needed. Using ReLogger Plugin by eXemplar, I could quite easily have it switch users and login to another character, it was my plan actually, if I can get past my current dead end the way I want to.
 
Produced a functioning BotBase, attached on Original Post.
 
I am currently in the process of developing a bot base for Auctioning. Used for monitoring the characters Mailbox, retrieving the mail, using Auctioneer to Auction off the goods, then interacting with the Guild Bank to deposit gold or unsold goods.

I have been able to create a functioning BotBase, using the addon Auctionator and Postal. I have attached the BotBase, feel free to expand, and give credit where needed. I will continue to develop this in my spare time.

Enjoy: View attachment 13702

is it for auctionator or auctioneer in use cause you talked about both.
 
run it as a plugin I pressume?
and then a bit more of a explantion etc could make this one worthy plugin mate;)
 
i'd assume you ran a blank profile in SW.

or one with a mailbox <MAILBOX>tag. (weird, it won't let me stick tags in here)

context would be great =)
 
Last edited:
run it as a plugin I pressume?
and then a bit more of a explantion etc could make this one worthy plugin mate;)

Oh, this isn't posted as a functional product, I'm just quite busy and threw this out there for other people to play with. But I suppose i'll explain a bit:

To use:
Place Auction.cs in Bots folder.
Install Auctionator and Postal Addons.
Be near the AH (Visible On Minimap).
Create a Macro and place it on Bar 1, #9, and in the macro put: "/click Atr_CreateAuctionButton".
Click Start :-P.

It will auction based on what I had set in the class itself, there is no configuration:
Code:
var items =
                            StyxWoW.Me.BagItems.FindAll(
                                o => o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.TradeGoods ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Cloth ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Enchanting ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Elemental).FindAll(o => o.StackCount == o.ItemInfo.MaxStackSize && o.Name != "Hearthstone");

Full stacks, and TradeGoods, Cloth, Enchating and Elemental.
 
A Bot base goes in the Bots Directory and not in plugins directory. Just like Instancebuddy.
 
A Bot base goes in the Bots Directory and not in plugins directory. Just like Instancebuddy.

yeah was confused a bit^^, even I have nooby moments!

fair enough will play around with it

Edit:

doesn't seem to want to auction my elementium or pyrite ore!

SAB: Interacting with Auctioneer
SAB: Auction Frame Visible
SAB: COULD NOT FIND ANY ITEMS TO AUCTION!

any idea why that is?
 
Last edited:
getting the same error as you panyama sells all my volatiles but keeps all elemntium pyrite and herbs. i looked at the code and there is nothing talking about herbs or ores just elementals cloth and other stuff like enchanting supplies etc...
 
You guys are never happy lol ....

Here are the possible WoWItemTradeGoodsClass's:
Code:
WoWItemTradeGoodsClass.ArmorEnchant
WoWItemTradeGoodsClass.Cloth
WoWItemTradeGoodsClass.Devices
WoWItemTradeGoodsClass.Elemental
WoWItemTradeGoodsClass.Enchanting
WoWItemTradeGoodsClass.Explosives
WoWItemTradeGoodsClass.Herb
WoWItemTradeGoodsClass.JewelCrafting
WoWItemTradeGoodsClass.Leather
WoWItemTradeGoodsClass.Materla   (Don't ask, cause I don't know?)
WoWItemTradeGoodsClass.Meat
WoWItemTradeGoodsClass.MetalStone
WoWItemTradeGoodsClass.None
WoWItemTradeGoodsClass.Other
WoWItemTradeGoodsClass.Parts
WoWItemTradeGoodsClass.TradeGoods
WoWItemTradeGoodsClass.WeaponEnchantment

To modify what it sells, modify:
Code:
var items =
                            StyxWoW.Me.BagItems.FindAll(
                                o => o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.TradeGoods ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Cloth ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Enchanting ||
                                     o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.Elemental).FindAll(o => o.StackCount == o.ItemInfo.MaxStackSize && o.Name != "Hearthstone");

Correct format is:
o.ItemInfo.TradeGoodsClass == WoWItemTradeGoodsClass.GOODSCLASS
 
thank you =) ive been waiting for someone to release something like this.
+rep
 
I suppose I will continue this a bit further, expect a release shortly with a Configuration atleast. ETA: ... when I figure out how the fuck to nicely use a CheckedListBox .... grr
 
haha looking forward to testing it. So far so good with the current release 10k gold made.
thanks again
 
Tried to mess with it to change what it will sell but it didnt work.. programming kicks the crap outa me.
 
Tried to mess with it to change what it will sell but it didnt work.. programming kicks the crap outa me.
Here is the working version that sells everything. It sells gems herbs ores cloth and everything else.
Follow the same instructions as smarter said.
 

Attachments

Back
Top