Jump to content

[TUT - MaNGOS] Using Auction House Bot (AHbot)


Recommended Posts

Posted

Chris K did a marvelous job at writing a job for it, so I won't bother making my own. 100% credits to him <3

 

 

This patch modifies the core so it populates the auction houses with items. It makes the game feel a bit more like official. Items and prices are chosen randomly based on the parameters you define. If an auction expires, auctions are deleted quietly. If the auction sells, you *can* get the in-game mail for that item.

 

Step 1.) Create a character that you are going to use as the auction house bot character. This character will be the auctions' owner for all the items created by the bot.

 

Step 2.) Go into the realm database and note the account number for the character.

 

Step 3.) Go into the mangos database and note the character's GUID.

 

Step 4.) Log in at least once with this character.

 

Step 5.) Apply the patch and rebuild MaNGOS. For unix, you will need to re-run "automake"

 

Step 6.) Tune the newly added configuration options in the configuration file. They are discussed below...

 

Code:

# Auction House Bot
AuctionHouseBot.Account = 0
AuctionHouseBot.GUID = 0
AuctionHouseBot.NoMail = 0
AuctionHouseBot.AllianceItems = 0
AuctionHouseBot.HordeItems = 0
AuctionHouseBot.NeutralItems = 0
AuctionHouseBot.MinTime = 8
AuctionHouseBot.MaxTime = 24
AuctionHouseBot.PercentWhiteTradeGoods = 30
AuctionHouseBot.PercentGreenTradeGoods = 13
AuctionHouseBot.PercentBlueTradeGoods = 9
AuctionHouseBot.PercentPurpleTradeGoods = 1
AuctionHouseBot.PercentWhiteItems = 6
AuctionHouseBot.PercentGreenItems = 30
AuctionHouseBot.PercentBlueItems = 9
AuctionHouseBot.PercentPurpleItems = 2
AuctionHouseBot.MinPriceWhite = 150
AuctionHouseBot.MaxPriceWhite = 250
AuctionHouseBot.BidPriceWhite = 100
AuctionHouseBot.MaxStackWhite = 0
AuctionHouseBot.MinPriceGreen = 200
AuctionHouseBot.MaxPriceGreen = 300
AuctionHouseBot.BidPriceGreen = 100
AuctionHouseBot.MaxStackGreen = 3
AuctionHouseBot.MinPriceBlue = 250
AuctionHouseBot.MaxPriceBlue = 350
AuctionHouseBot.BidPriceBlue = 100
AuctionHouseBot.MaxStackBlue = 2
AuctionHouseBot.MinPricePurple = 300
AuctionHouseBot.MaxPricePurple = 450
AuctionHouseBot.BidPricePurple = 100
AuctionHouseBot.MaxStackPurple = 1

 

AuctionHouseBot.Account is the account number (in realmd->account table) of the player you want to run as the auction bot. Note: a value of 0 will disable the bot.

 

AuctionHouseBot.GUID is the GUID (in mangos->character table) of the player you want to run as the auction bot. Note: a value of 0 will disable the bot.

 

AuctionHouseBot.NoMail is a flag to disable mail for successfull auctions. A value of 0 will allow mail for successful auctions to be sent, which is the default. Non-zero (e.g. AuctionHouseBot.NoMail = 1) will stop successful auction mail.

 

AuctionHouseBot.AllianceItems is the number of items you want to keep in the Alliance auction house.

 

AuctionHouseBot.HordeItems is the number of items you want to keep in the Horde auction house.

 

AuctionHouseBot.NeutralItems is the number of items you want to keep in the Neutral auction house.

 

AuctionHouseBot.MinTime is the minimum number of hours for an auction.

 

AuctionHouseBot.MaxTime is the maximum number of hours for an auction.

 

AuctionHouseBot.PercentWhiteTradeGoods is the percentage of the auction items that should be trade goods of white quality. A value of 0 will disable.

 

AuctionHouseBot.PercentGreenTradeGoods - see above

AuctionHouseBot.PercentBlueTradeGoods - see above

AuctionHouseBot.PercentPurpleTradeGoods - see above

AuctionHouseBot.PercentWhiteItems - see above

AuctionHouseBot.PercentGreenItems - see above

AuctionHouseBot.PercentBlueItems - see above

AuctionHouseBot.PercentPurpleItems - see above

 

AuctionHouseBot.MinPriceWhite is the minimum price adjustment for white items. For example the default is 150, which means 150%. So if an item vendors for 1g it would go to auction for a minimum of 1.5g.

 

AuctionHouseBot.MaxPriceWhite is the maximum price adjustment for white items.

 

AuctionHouseBot.BidPriceWhite is the starting bid as a percent of the buyout price. For example, if this value is 50 and the buyout price is randomly chosen to be 1g, then the bid price will be 50s.

 

AuctionHouseBot.MaxStackWhite is maximum stack size to create for this quality type. A value of zero will disable the maximum stack size for this quality allowing the bot to create stacks (of random size) of items as big as the item type allows.

 

AuctionHouseBot.MinPriceGreen - see above

AuctionHouseBot.MaxPriceGreen - see above

AuctionHouseBot.BidPriceGreen - see above

AuctionHouseBot.MaxStackGreen - see above

AuctionHouseBot.MinPriceBlue - see above

AuctionHouseBot.MaxPriceBlue - see above

AuctionHouseBot.BidPriceBlue - see above

AuctionHouseBot.MaxStackBlue - see above

AuctionHouseBot.MinPricePurple - see above

AuctionHouseBot.MaxPricePurple - see above

AuctionHouseBot.BidPricePurple - see above

AuctionHouseBot.MaxStackPurple - see above

 

If you chose to include the ahcommands.patch, it will add the following commands for GM level 3 players:

ahexpire <house id> <player GUID>

ahdelete <house id> <player GUID>

 

ahexpire will expire all the auctions in the requested auction house with the player GUID as the owner.

ahdelete will delete all the auctions in the requested auction house with the player GUID as the owner.

 

The real difference between them is that 'ahexpire' will actually deliver the auction if some has bid on it, and ahdelete will just delete the auction regardless if someone has bid on it or not.

 

The auction house IDs are:

2 - Alliance

6 - Horde

7 - Neutral

 

Example, if my auction house bot character's GUID is 42, and I want to clear out all their auctions from the neutral auction house, I would run the following:

 

ahdelete 7 42

 

Please post any questions or bugs you have.

 

Thanks!

 

Last tried with MaNGOS v4671

 

Download

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Another happy customer with custom Updater / Launcher for his server! Get one Yourself as well!
    • Where to buy Telegram Stars at low prices before September 1? The best solution is the SocNet Stars Telegram bot! Pavel Durov announced that new gifts are already near! And they may come out in early September. Stay ready together with our SocNet Stars Telegram bot! Cheap prices, best quality, fast delivery! You will have very little time before the next SOLD OUT. The opportunity to quickly earn and receive a valuable official NFT gift in Telegram is already close. Buy Telegram Stars quickly, profitably and safely - https://t.me/socnetstarsbot Many payment methods! Actual links to our projects: Telegram bot for buying Telegram Stars: Go Digital goods store: Go Telegram bot store: Go SMM Panel: Go We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via mail/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via mail — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via mail + active 2FA password — Instagram old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) — Facebook old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) | With friends and without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via mail (possibly also connected 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Write to the contacts below — we will discuss the terms! We are always open to other partnership offers as well. Contacts and support: Telegram: https://t.me/socnet_support  Telegram channel: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord server: https://discord.gg/y9AStFFsrh Email: solomonbog@socnet.store SocNet — digital goods and premium subscriptions store
    • Where to buy Telegram Stars at low prices before September 1? The best solution is the SocNet Stars Telegram bot! Pavel Durov announced that new gifts are already near! And they may come out in early September. Stay ready together with our SocNet Stars Telegram bot! Cheap prices, best quality, fast delivery! You will have very little time before the next SOLD OUT. The opportunity to quickly earn and receive a valuable official NFT gift in Telegram is already close. Buy Telegram Stars quickly, profitably and safely - https://t.me/socnetstarsbot Many payment methods! Actual links to our projects: Telegram bot for buying Telegram Stars: Go Digital goods store: Go Telegram bot store: Go SMM Panel: Go We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via mail/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via mail — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via mail + active 2FA password — Instagram old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) — Facebook old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) | With friends and without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via mail (possibly also connected 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Write to the contacts below — we will discuss the terms! We are always open to other partnership offers as well. Contacts and support: Telegram: https://t.me/socnet_support  Telegram channel: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord server: https://discord.gg/y9AStFFsrh Email: solomonbog@socnet.store SocNet — digital goods and premium subscriptions store
    • Where to buy Telegram Stars at low prices before September 1? The best solution is the SocNet Stars Telegram bot! Pavel Durov announced that new gifts are already near! And they may come out in early September. Stay ready together with our SocNet Stars Telegram bot! Cheap prices, best quality, fast delivery! You will have very little time before the next SOLD OUT. The opportunity to quickly earn and receive a valuable official NFT gift in Telegram is already close. Buy Telegram Stars quickly, profitably and safely - https://t.me/socnetstarsbot Many payment methods! Actual links to our projects: Telegram bot for buying Telegram Stars: Go Digital goods store: Go Telegram bot store: Go SMM Panel: Go We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via mail/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via mail — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via mail + active 2FA password — Instagram old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) — Facebook old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) | With friends and without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via mail (possibly also connected 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Write to the contacts below — we will discuss the terms! We are always open to other partnership offers as well. Contacts and support: Telegram: https://t.me/socnet_support  Telegram channel: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord server: https://discord.gg/y9AStFFsrh Email: solomonbog@socnet.store SocNet — digital goods and premium subscriptions store
    • Where to buy Telegram Stars at low prices before September 1? The best solution is the SocNet Stars Telegram bot! Pavel Durov announced that new gifts are already near! And they may come out in early September. Stay ready together with our SocNet Stars Telegram bot! Cheap prices, best quality, fast delivery! You will have very little time before the next SOLD OUT. The opportunity to quickly earn and receive a valuable official NFT gift in Telegram is already close. Buy Telegram Stars quickly, profitably and safely - https://t.me/socnetstarsbot Many payment methods! Actual links to our projects: Telegram bot for buying Telegram Stars: Go Digital goods store: Go Telegram bot store: Go SMM Panel: Go We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via mail/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via mail — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via mail + active 2FA password — Instagram old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) — Facebook old accounts (2010-2023) | Full access via mail (possibly also connected 2FA password) | With friends and without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via mail (possibly also connected 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Write to the contacts below — we will discuss the terms! We are always open to other partnership offers as well. Contacts and support: Telegram: https://t.me/socnet_support  Telegram channel: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord server: https://discord.gg/y9AStFFsrh Email: solomonbog@socnet.store SocNet — digital goods and premium subscriptions store
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock