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

WoWInternals.Misc.AuctionHouse?

al.muhandis

New Member
Joined
Aug 26, 2011
Messages
47
Reaction score
0
I'd like to create a plugin that uses the auction house and found this very nice looking class/w.e. (sorry I'm pretty new to C#, coming from Java) called AuctionHouse.

However, I cannot find any references (from other classes) to it. So would anyone be so kind as to explain how I can get an AuctionHouse instance?

I checked the PB code and apparently it doesn't use this at all and instead uses Lua injection. I guess I could resort to that but I'd really love to use the this AuctionHouse and keep things much cleaner/easier.

All I really want to do is scan all auctions in one section (say, Red Gems), check if I've been undercut, and if so, cancel and repost with some logic (e.g. as long as the market price is > minMarketPrice). Before you might say so, PB isn't capable of exactly what I need, so please don't recommend it. I can't stand writing a "program" in XML (never was meant for it...) anyway.

Thanks!
 
To my knowledge HB does not wrap the AH Frame beyond the standard frame information. LUA is your best method, for large queries I suggest utilizing:

Code:
using (new FrameLock())
{
     //LUA Queries Here
}

Allowing you to execute multiple LUA Queries in one frame of WoW.
 
Ah alright. Darn it, that class looked so nice too.

Thank you very much for the help!
 
Back
Top