diff options
| author | Jinnaix <37972361+Jinnaix@users.noreply.github.com> | 2020-08-29 17:05:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-29 17:05:59 +0200 |
| commit | 812c2af4dae555b742ed318f0a93458115618356 (patch) | |
| tree | 10159a369db9c1c1fc3e78b5f3712b438ca8d474 /src | |
| parent | 4fcd6ddb74c69f15dca12ccf03ec8707dac472f4 (diff) | |
Core/Misc: Update Worldserver.conf for AhBot Pricing -make things more clear (#25341)
* AhBot Pricing: Make things more clear
* Change default value to BuyPrice and add some more information to how two sided AH works
* Sync c++ configs with .conf ones
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/game/AuctionHouseBot/AuctionHouseBot.cpp | 2 | ||||
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 17 |
2 files changed, 14 insertions, 5 deletions
diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp index 57ee701a0cb..9af6435beb2 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp @@ -174,7 +174,7 @@ void AuctionBotConfig::GetConfigFromFile() SetConfig(CONFIG_AHBOT_BIND_QUEST, "AuctionHouseBot.Bind.Quest", false); SetConfig(CONFIG_AHBOT_LOCKBOX_ENABLED, "AuctionHouseBot.LockBox.Enabled", false); - SetConfig(CONFIG_AHBOT_BUYPRICE_SELLER, "AuctionHouseBot.BuyPrice.Seller", true); + SetConfig(CONFIG_AHBOT_BUYPRICE_SELLER, "AuctionHouseBot.BuyPrice.Seller", false); SetConfig(CONFIG_AHBOT_ITEMS_PER_CYCLE_BOOST, "AuctionHouseBot.ItemsPerCycle.Boost", 1000); SetConfig(CONFIG_AHBOT_ITEMS_PER_CYCLE_NORMAL, "AuctionHouseBot.ItemsPerCycle.Normal", 20); diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 5364db34781..6f5793c252a 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -1564,6 +1564,15 @@ AllowTwoSide.Interaction.Guild = 0 # # AllowTwoSide.Interaction.Auction # Description: Allow auctions between factions. +# This results in all auctions being handled as if placed in the neutral +# auction house and will intentionally lock acces to the Horde and Alliance AH. +# Deposit fee and auction cut values will be taken from neutral auction house. +# If used in combination with the AH-Bot, settings should be set for neutral +# auction house only. +# +# Warning: changing this in production results in players loosing access to their +# already placed auctions in the faction houses - these auctions will expire after +# their regular timings. # Default: 0 - (Disabled) # 1 - (Enabled) @@ -3471,11 +3480,11 @@ AuctionHouseBot.ItemsPerCycle.Normal = 20 # # AuctionHouseBot.BuyPrice.Seller -# Description: Should the Seller use BuyPrice or SellPrice to determine Bid Prices -# Default: 1 - (use SellPrice) -# 0 - (use BuyPrice) +# Description: Should the Seller use the items BuyPrice or SellPrice to determine Bid Prices +# Default: 0 - (use BuyPrice - results in higher prices) +# 1 - (use SellPrice - results in lower prices) -AuctionHouseBot.BuyPrice.Seller = 1 +AuctionHouseBot.BuyPrice.Seller = 0 # # AuctionHouseBot.BidPrice.* |
