Hi,
is it possible to sell items with the bot.
When I´m crafting items and my bag is full, is it possible that the bot automatly push the sell button from the NPC.
I always stand at one point. I don´t move it.
Thanks for help
Sell items
Re: Sell items
So are you crafting with the bot or doing it manually?
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Sell items
The crafting goes automatly how long mats in my bag und emty slots in my bag.
I always search for an optionsa to sell all items to the NPC when my bag full with items.
I always search for an optionsa to sell all items to the NPC when my bag full with items.
Last edited by Sammy009 on Mon Mar 24, 2014 6:55 am, edited 1 time in total.
Re: Sell items
Sorry I'm still not clear. Are you using a bot or are you using an crafting addon? It sounds like you are using a crafting addon.
Oh and by the way, this is the wrong section for questions. I'll move this topic.
Oh and by the way, this is the wrong section for questions. I'll move this topic.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Sell items
im searching for a methode with I can automatly sell items to the NPC when my bags are full.
I haven´t am Mouse or Tastuatur with a Makrooption.
So I think that can I do with the bot
I haven´t am Mouse or Tastuatur with a Makrooption.
So I think that can I do with the bot
Re: Sell items
Could just do a waypoint or function with something like
If you use player:merchant you will have to define all your merchant settings in your profile.
could be what you want in profile. Be careful to declare correct settings as you can vendor things you didn't want to vendor if there is anything of importance in backpack.
Code: Select all
repeat
yrest(1000);
until inventory:itemTotalCount(0) == 0
player:merchant(xxxxxx) -- Name or ID of merchantCode: Select all
<!-- Auto selling options when used with player:merchant -->
<option name="INV_AUTOSELL_ENABLE" value="true" /> <!-- true | false -->
<option name="INV_AUTOSELL_FROMSLOT" value="1" /> <!-- 1 = bag 1 slot 1 -->
<option name="INV_AUTOSELL_TOSLOT" value="180" /> <!-- 30 = last slot bag 1 -->
<option name="INV_AUTOSELL_QUALITY" value="white,green,blue" /> <!-- white,green,blue,purple -->