Hello all! Could you guys help me? Which tag in the profile to force my bot to sell specific items? For example i need to sell all Embersilk Cloth (itemID=53010) from my bags.
Ideally you'd remove the item from your Protected Items file. The Protected Items file is located in your Honorbuddy directory. If you don't want to remove it from your protected items file, then it depends on what type of profile you're using. I assume it is a Questing profile? If so, you can do a very simple DoWhen sell. Code: <Code File="Hooks\DoWhen" ActivityName="Sell_EmbersilkCloth" UseWhen="MerchantFrame.Instance.IsVisible && HasItem(53010)" > <Code File="UseItem" ItemId="53010" NumOfTimes="100" TerminateWhen="!MerchantFrame.Instance.IsVisible || !HasItem(53010)" /> </Code>