|
7 | 7 | # Enable/Disable Debugging output
|
8 | 8 | # Default 0 (disabled)
|
9 | 9 | #
|
| 10 | +# AuctionHouseBot.DEBUG_CONFIG |
| 11 | +# Enable/Disable Debugging output from the configuration |
| 12 | +# Default 0 (disabled) |
| 13 | +# |
10 | 14 | # AuctionHouseBot.DEBUG_FILTERS
|
11 | 15 | # Enable/Disable Debugging output from Filters
|
12 | 16 | # Default 0 (disabled)
|
13 | 17 | #
|
| 18 | +# AuctionHouseBot.DEBUG_BUYER |
| 19 | +# Enable/Disable Debugging output from buyer |
| 20 | +# Default 0 (disabled) |
| 21 | +# |
| 22 | +# AuctionHouseBot.DEBUG_SELLER |
| 23 | +# Enable/Disable Debugging output from seller |
| 24 | +# Default 0 (disabled) |
| 25 | +# |
| 26 | +# AuctionHouseBot.TRACE_SELLER |
| 27 | +# Enable/Disable tracing for the sold items |
| 28 | +# Default 0 (disabled) |
| 29 | +# |
| 30 | +# AuctionHouseBot.TRACE_BUYER |
| 31 | +# Enable/Disable tracing for the bought items |
| 32 | +# Default 0 (disabled) |
| 33 | +# |
14 | 34 | # AuctionHouseBot.EnableSeller
|
15 | 35 | # Enable/Disable the part of AHBot that puts items up for auction
|
16 | 36 | # Default 0 (disabled)
|
|
39 | 59 | # Number of Items to Add/Remove from the AH during mass operations
|
40 | 60 | # Default 200
|
41 | 61 | #
|
| 62 | +# AuctionHouseBot.ConsiderOnlyBotAuctions |
| 63 | +# Ignore player auctions and consider only bot ones when keeping track of the numer of auctions in place. |
| 64 | +# This allow to keep a background noise in the market even when lot of players are in. |
| 65 | +# Default 0 (False) |
| 66 | +# |
| 67 | +# AuctionHouseBot.DuplicatesCount |
| 68 | +# The maximum amount of duplicates stacks present in the market sold by the bot. |
| 69 | +# If set to zero then no limits are set in place. |
| 70 | +# Default 0 |
| 71 | +# |
| 72 | +# AuctionHouseBot.DivisibleStacks |
| 73 | +# Sell items in stack sizes which depends on the maximum amount per stack. |
| 74 | +# For example, an item with max stack size 20 will be sold in 5, 10 15 and 20 stacks, and not at random. |
| 75 | +# Default 0 (False) |
| 76 | +# |
| 77 | +# AuctionHouseBot.ElapsingTimeClass |
| 78 | +# The elapsing time for the sold items. There are three classes: |
| 79 | +# 0 = long, auctions lasts from one to three days |
| 80 | +# 1 = medium, auctions lasts within a day |
| 81 | +# 2 = shorts, auctions lasts within an hour |
| 82 | +# Default 1 |
| 83 | +# |
| 84 | +# |
42 | 85 | ###############################################################################
|
43 | 86 |
|
44 | 87 | AuctionHouseBot.DEBUG = 0
|
| 88 | +AuctionHouseBot.DEBUG_CONFIG = 0 |
45 | 89 | AuctionHouseBot.DEBUG_FILTERS = 0
|
| 90 | +AuctionHouseBot.DEBUG_BUYER = 0 |
| 91 | +AuctionHouseBot.DEBUG_SELLER = 0 |
| 92 | +AuctionHouseBot.TRACE_SELLER = 0 |
| 93 | +AuctionHouseBot.TRACE_BUYER = 0 |
| 94 | + |
46 | 95 | AuctionHouseBot.EnableSeller = 0
|
47 | 96 | AuctionHouseBot.EnableBuyer = 0
|
48 | 97 | AuctionHouseBot.UseBuyPriceForSeller = 0
|
49 | 98 | AuctionHouseBot.UseBuyPriceForBuyer = 0
|
50 | 99 | AuctionHouseBot.Account = 0
|
51 | 100 | AuctionHouseBot.GUID = 0
|
52 | 101 | AuctionHouseBot.ItemsPerCycle = 200
|
| 102 | +AuctionHouseBot.ConsiderOnlyBotAuctions = 0 |
| 103 | +AuctionHouseBot.DuplicatesCount = 0 |
| 104 | +AuctionHouseBot.DivisibleStacks = 0 |
| 105 | +AuctionHouseBot.ElapsingTimeClass = 1 |
53 | 106 |
|
54 | 107 | ###############################################################################
|
55 | 108 | # AUCTION HOUSE BOT FILTERS PART 1
|
@@ -264,3 +317,15 @@ AuctionHouseBot.DisableItemsBelowReqSkillRank = 0
|
264 | 317 | AuctionHouseBot.DisableItemsAboveReqSkillRank = 0
|
265 | 318 | AuctionHouseBot.DisableTGsBelowReqSkillRank = 0
|
266 | 319 | AuctionHouseBot.DisableTGsAboveReqSkillRank = 0
|
| 320 | + |
| 321 | +############################################################################### |
| 322 | +# AUCTION HOUSE BOT FILTERS PART 4 |
| 323 | +# |
| 324 | +# AuctionHouseBot.SellerWhiteList |
| 325 | +# Bypass the values of the disabled items table and only allows selling of the selected items |
| 326 | +# Values here must be the item template id separated with a comma (eg "1, 2, 3") |
| 327 | +# Default "" (Empty) |
| 328 | +# |
| 329 | +############################################################################### |
| 330 | + |
| 331 | +AuctionHouseBot.SellerWhiteList = "" |
0 commit comments