What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Tag for direct Selling item

Kannai

New Member
Joined
Aug 5, 2015
Messages
17
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 &amp;&amp; HasItem(53010)" >
    <Code File="UseItem" ItemId="53010" NumOfTimes="100" TerminateWhen="!MerchantFrame.Instance.IsVisible || !HasItem(53010)" />
</Code>
 
Back
Top