buggerface
New Member
- Joined
- Oct 18, 2011
- Messages
- 13
- Reaction score
- 0
Hey all, thanks for looking - I am in need of help!
I have written a PB profile, here's what I want it to do;
1 - Post 1 stack of 1 of an item (in this case Zephyrite) for a price I specify
2 - Buy any auctions that undercut mine
3 - Post the same auction again every [X] minutes.
So basically it is a baiter bot. I have tried it and it only buys - does not post. Tested by posting from a second account and it bought it.
Code is below!
I have written a PB profile, here's what I want it to do;
1 - Post 1 stack of 1 of an item (in this case Zephyrite) for a price I specify
2 - Buy any auctions that undercut mine
3 - Post the same auction again every [X] minutes.
So basically it is a baiter bot. I have tried it and it only buys - does not post. Tested by posting from a second account and it bought it.
Code is below!
PHP:
<?xml version="1.0" encoding="utf-8"?>
<Professionbuddy>
<ChangeBotAction BotName="Combat Bot" />
<If Condition="True" IgnoreCanRun="True">
<SellItemOnAhAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" UseCategory="True" RunTime="_12_Hours" AmountType="Amount" ItemID="" MinBuyout="0g0s14c" MaxBuyout="0g0s15c" StackSize="1" IgnoreStackSizeBelow="1" Amount="1" BidPrecent="99" UndercutPrecent="0.1" AutoFindAh="True" PostIfBelowMinBuyout="True" Location="0, 0, 0" />
</If>
<Settings DefaultValue="false" Type="Boolean" Name="Cancel Undercut Auctions" Summary="if set to true if you want to cancel all auctions that are undercutted" Category="Misc" Global="False" Hidden="False" />
<CustomAction Code="var1 = true;" />
<CustomAction Code="var2 = DateTime.Now;" />
<CustomAction Code="var3 = new Random().Next(30, 300);" />
<CustomAction Code="var4 = new Random().Next(400000, 600000);" />
<SellItemOnAhAction Category="TradeGoods" SubCategoryType="WoWItemTradeGoodsClass" SubCategory="MetalStone" UseCategory="True" RunTime="_12_Hours" AmountType="Amount" ItemID="" MinBuyout="0g0s14c" MaxBuyout="0g0s15c" StackSize="20" IgnoreStackSizeBelow="1" Amount="1" BidPrecent="99" UndercutPrecent="0.1" AutoFindAh="True" PostIfBelowMinBuyout="True" Location="0, 0, 0" />
<While Condition="true" IgnoreCanRun="True">
<If Condition="DateTime.Now.Subtract((DateTime)var2).TotalSeconds >= (int)var3" IgnoreCanRun="True">
<CustomAction Code="var2 = DateTime.Now;" />
<CustomAction Code="var3 = new Random().Next(30, 300);" />
<CustomAction Code="KeyboardManager.AntiAfk();" />
</If>
<BuyItemFromAhAction ItemListType="Item" ItemID="52178" MaxBuyout="0g0s15c" Amount="9999" BuyAdditively="True" AutoFindAh="True" BidOnItem="False" Location="0, 0, 0" />
<WaitAction Condition="false" Timeout="2000" />
<If Condition="DateTime.Now.Subtract((DateTime)var2).TotalSeconds >= (int)var4" IgnoreCanRun="True">
<CustomAction Code="var2 = DateTime.Now;" />
<CustomAction Code="var4 = new Random().Next(400000, 600000);" />
<CustomAction Code="KeyboardManager.AntiAfk();" />
</If>
</While>
</Professionbuddy>
Last edited:






