Hi, I downloaded this wonderful profile a couple of days ago and tried a couple of times. It simply worked great! Today I tried again, but I saw it was acting oddly: the bot started to post items without buyout price and with minimum price of 0g0s0c! Luckily I got it on time and cancelled all the auctions, then I ran it again to see what was exactly the problem and it did it again!
I came here to understand why and I saw how to configure the price manually (which I didn't the first time) and saw that in the xml file every item's price was set to 0g0s0c! I didn't download the profile manually, I set it with TortoiseSVN. Is there a reason why this happened? the bot doesn't set the prices itself in some ways? To set each price manually is really a huge job (pretty much the reason why I use the bot: to avoid boring jobs!

)! T_T
Attached is the last log, I stopped the bot to avoid it from posting any more items at useless prices
View attachment 104876
I highly recommend you to read the first post.
It's important.
As there is written with BIG RED LATTERS:
The default price is zero for all items and need to be changed.
Open the .xml with notepad ++ and REPLACE ALL that says MinBuyout="0g0s0c" with MinBuyout="0g0s1c" and then replace all MaxBuyout="0g0s0c" with MaxBuyout="999g0s0c" and problem solved.
But I manually edit the min and max buyout of all the items that I got so if there are too low priced items - the wont post.
And if there are no items posted on the A of certain type I will post them with reasonable price, not 999g for stack of copper ore.
I got a question:
I am editing the HB because I encounter a few problems.
1. Firstly - when it cancels the auctions I may receive too many items that can not be received in one batch of mails and what happens is that the bot runs to the GB and get's items that are missing in his inventory and in the AH, but are actually in the mailbox.
I tried to make it like this:
<WHILE Condition="(HasNewMail || MailCount> 0) && (bool)Settings["Check Mail"] && !Me.NormalBagsFull" IgnoreCanRun="False">
<CustomAction Code="Log (Colors.Crimson,"AHBuddy: ",Colors.BlanchedAlmond,"Checking for new mail."

;" />
<GetMailAction GetMailType="AllItems" ItemID="0" CheckNewMail="True" MinFreeBagSlots="0" AutoFindMailBox="True" />
<CallSubRoutine SubRoutineName="PostToAH" />
</WHILE>
Sadly, it didn't work.
2. Also if the items on the AH are under the minbuyout value I would like them to be posted on the minbuyout price. Meaning on the undercut check items with the minbuyout shouldn't be canceled. It doesn't do that and on top if there are items that are not posted the bot's inventory get's stacked up with items that it wont post.
3. FIX: I've added <CallSubRoutine SubRoutineName="MoveToGbank" /> every time before <CallSubRoutine SubRoutineName="WithdrawBank" /> otherwise it was spamming "Err: Can't find Bank" or something like this quite often.