When posting items to AH with PB, how do I set it so it will post X amount of items every time it uses AH or post X every time it uses AH and our auctions have been undercut? Right now if I have a total of X auctions going and some of them have been undercut, it won't post any more, because the total amount posted has been reached already.
Code:
<SubRoutine SubRoutineName="PostX">
<If Condition="!(InbagCount (XXXXX) > 0)" IgnoreCanRun="True">
</If>
<If Condition="InbagCount (XXXXX) > 0" IgnoreCanRun="True">
<SellItemOnAhAction UseCategory="False" RunTime="_12_Hours" AmountType="Amount" ItemID="XXXXX" MinBuyout="30g0s0c" MaxBuyout="1000g0s0c" StackSize="1" IgnoreStackSizeBelow="1" Amount="3" BidPrecent="100" UndercutPrecent="0.0001" AutoFindAh="True" PostIfBelowMinBuyout="False" />
// I made a workaround to this by adding undercutting into my code, but I'd still like to know how can I force post?