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!

Activity: Selling Items

gilette

New Member
Joined
Aug 31, 2011
Messages
160
Is there any way to make the bot not sell all items (including meats, ORES and BoE's)
Any plugin to prevent it?

And no, dont tell me crap about editting "protected items file" becose there must be some easier way than force every user to edit the files (or for all sence there should be someone already made file, or the "copy pasta" what to add there *wink* *wink*)
So, the char runs to blacksmith, sells items, then starts to run to mailbox with empty bags, wth :rolleyes:

Using latest HB with Questing, Profile [A - Quest] Human 1-60 [Kick]

Any help on this one?

-gilette

Ps. If there is already topic about my stated issue, feel free to yell at me.

Edit: I realized the problem might be if the bot is running and you manaully click the vendor after she has just sold the grey items, I might be wrong on this one but need more investigation..
 
Last edited:
There are plugins that protect your food and drink and many other things. UTFSE

Also editing the protected items works too
 
I've been without a computer for months! I still do have a reliable one but I missed the forums and you guys too much so I borrowed my buddy's laptop. Right now I'm on my phone tho haha. But I'm gonna try and get back in and make something useful. It seems glideroy has gone beast mode on the pally healing cc since I've been gone so I guess I need to figure out something else to occupy my time haha. Any suggestions? :P
 
To Gilette and paulg66 (from: http://www.thebuddyforum.com/honorbuddy-forum/33795-all-my-herbs-ore-being-sold.html),

Keep in mind the purpose of the profile you are using. I'm currently leveling up a druid and hunter using leveling profiles and both of them sell just about everything other than their hearthstone at the vender. Literally the only things it doesn't sell are blue items. I could code in the ores, herbs and on one of them, leathers that they collect into the protected items area, but I also realize that it may net them a few hundred gold over time. My toons already have over 50,000g to start with so I'm not concerned. I'll let them level and then use gathering profiles which of course protect the items they gather.

TLDR: if you want to use leveling profiles and sell what they are collecting, you have to add what you want to protect to the protected items in each of the profiles. If you want to be serious about gathering though, use gathering profiles.
 
Lazy as I am, does anyone have ready done protected items list that they could share for their kindness of their heart?

To Gilette and paulg66 (from: http://www.thebuddyforum.com/honorbuddy-forum/33795-all-my-herbs-ore-being-sold.html),

My toons already have over 50,000g to start with so I'm not concerned. I'll let them level and then use gathering profiles which of course protect the items they gather.

TLDR: if you want to use leveling profiles and sell what they are collecting, you have to add what you want to protect to the protected items in each of the profiles. If you want to be serious about gathering though, use gathering profiles.

Well, Im currently leveling questing and professions at same time. Maybe I should change from quests to gathering only, that way I get exp from the nodes, and skill level while at it (also killing the mobs on the way gives some). Or, is this now that whats called grinding? I never tried grinding profiles for it being too obvious botting, but I have always tought its just that the bot will farm only one area killing all mobs and looting - but not doing anything with mining or herbalism..
 
Last edited:
You can decide not to sell items both by rarity and by selected item. Just open your profile:
PHP:
<HBProfile>
	...
	<SellGrey>True</SellGrey>
	<SellWhite>True</SellWhite>
	<SellGreen>True</SellGreen>
	<MailWhite>False</MailWhite>
	<MailGreen>False</MailGreen>
	<MailBlue>True</MailBlue>
	<MailPurple>True</MailPurple>

	<ProtectedItems>
		<Item name="Item name" entry="UINT_ENTRY" />
		<Item name="Item name" entry="UINT_ENTRY" />
		<Item name="Item name" entry="UINT_ENTRY" />
		...
	</ProtectedItems>
	...
</HBProfile>
 
Or within that same code mail all but the grey items to your bank alt:
PHP:
    <SellGrey>True</SellGrey>
    <SellWhite>False</SellWhite>
    <SellGreen>False</SellGreen>
    <MailWhite>True</MailWhite>
    <MailGreen>True</MailGreen>
    <MailBlue>True</MailBlue>
    <MailPurple>True</MailPurple>

But if you were using leveling profiles, you'd have to change that for each profile it loads if there is a series.
 
Last edited:
Thanks Altoids - it makes sense when you explain it that way - I have only used GB rarely compared to HB - I'll change my practices to what you suggest.

Cheers!
 
Thanks Altoids, those realy help a lot, that was exactly what I was looking for. Now I can quest and it sends all the garbage to my bank alt. Im guessing and hoping that ores & other mats are handled as "White" items so they wont be sold. Will see how it goes.

Thanks again!

-Gilette
 
Ok, so I tested editing the quest files and its still doing the same exact thing - selling almost every item except quest items, food, heartstone & pick axe.

Im trying out this, sorry I dont know how to insert code into cool looking box like you do, so I just copy pasta it here.
I try changing every
<CustomBehavior File="ForceSetVendor" DoSell="True" DoRepair="True" DoMail="True" DoTrain="False"/>

to

<CustomBehavior File="ForceSetVendor" DoRepair="True" DoMail="True" DoTrain="False" DoSell="True"/>

At least, my way of thinking, it would first repair, then mail, then sell, preventing selling every item in the bags..
well see if this actually changes anything..

-Gilette
 
Back
Top