Fix crash by restricting to 1 bot per cycle

This commit is contained in:
NathanHandley
2025-03-09 20:06:35 -05:00
parent 9aba71e545
commit 2bc97d5a46
4 changed files with 36 additions and 85 deletions

View File

@@ -27,14 +27,10 @@
# AuctionHouseBot.GUIDs = 3 <- Only character with GUID 3
# AuctionHouseBot.GUIDs = 3,4 <- Both characters with GUID 3 and 4
#
# AuctionHouseBot.BotsPerCycle
# If using more than one GUID, this is how many of them will come on
# to do auction behaviors each cycle. Too many might impact performance
# since the bot sessions are created and destroyed.
# Default 1 (single random bot from GUID list)
#
# AuctionHouseBot.ItemsPerCycle
# How many items to post on the auction house every house update
# How many items to post on the auction house every house update. Items
# in a cycle will be posted by a single randomly selected bot, so Keep
# this value low if you want highly diverse postings
# Default 75
###############################################################################
@@ -42,8 +38,7 @@ AuctionHouseBot.DEBUG = 0
AuctionHouseBot.DEBUG_FILTERS = 0
AuctionHouseBot.EnableSeller = 1
AuctionHouseBot.EnableBuyer = 1
AuctionHouseBot.GUIDs = 3
AuctionHouseBot.BotsPerCycle = 1
AuctionHouseBot.GUIDs = 0
AuctionHouseBot.ItemsPerCycle = 75
###############################################################################