Sell items

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Sammy009
Posts: 33
Joined: Thu Oct 06, 2011 7:33 am

Sell items

#1 Post by Sammy009 »

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
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Sell items

#2 Post by rock5 »

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
Sammy009
Posts: 33
Joined: Thu Oct 06, 2011 7:33 am

Re: Sell items

#3 Post by Sammy009 »

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.
Last edited by Sammy009 on Mon Mar 24, 2014 6:55 am, edited 1 time in total.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Sell items

#4 Post by rock5 »

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.
  • 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
Sammy009
Posts: 33
Joined: Thu Oct 06, 2011 7:33 am

Re: Sell items

#5 Post by Sammy009 »

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
ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Sell items

#6 Post by ZZZZZ »

Could just do a waypoint or function with something like

Code: Select all

repeat
yrest(1000);
until inventory:itemTotalCount(0) == 0
player:merchant(xxxxxx) -- Name or ID of merchant
If you use player:merchant you will have to define all your merchant settings in your profile.

Code: 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  -->
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.
Post Reply