Sell Blue items, but not Monstercards,,, how ?

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
M4gm4
Posts: 137
Joined: Sun Jan 30, 2011 2:30 pm

Sell Blue items, but not Monstercards,,, how ?

#1 Post by M4gm4 »

Hi, what i have to do, to sell blue items, but not the monstercards ?

Code: Select all


			-- expert inventar
			INV_MAX_SLOTS = 150,	 			-- maximal slots to update in the inventory:update()
			INV_UPDATE_INTERVAL = 300,	 	-- full inventory update every x seconds (only used indirect atm)
			INV_AUTOSELL_ENABLE = true,	-- autosell items at merchant true|false
			INV_AUTOSELL_FROMSLOT = 121,		-- autosell from slot #
			INV_AUTOSELL_TOSLOT = 150,		-- autosell to slot #
			INV_AUTOSELL_QUALITY = "white,green,blue",	-- itemcolors to sell
			INV_AUTOSELL_IGNORE = nil,		-- itemnames never so sell
			-- INV_AUTOSELL_NOSELL_DURA = 0,	-- durability > x will not sell, 0=sell all
			-- INV_AUTOSELL_STATS_NOSELL = nil,	-- stats (text search at right tooltip side) that will not be selled
			-- INV_AUTOSELL_STATS_SELL = nil,		-- stats (text search at right tooltip side) that will be selled, even if in nosell

i can only discriminate itembagplace, stats, dura and color if i had understand right..
I use the google translator, so do not be surprised if my english is funny
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Sell Blue items, but not Monstercards,,, how ?

#2 Post by rock5 »

Normally you would add "Card" to INV_AUTOSELL_IGNORE. But I'm not sure if that will work because cards don't always behave as expected. Maybe something to do with the '-' in the name. Try it anyway and see if it works.
  • 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
JackBlonder
Posts: 99
Joined: Sat Dec 18, 2010 6:55 am

Re: Sell Blue items, but not Monstercards,,, how ?

#3 Post by JackBlonder »

I think

Code: Select all

INV_AUTOSELL_IGNORE = "Card",      -- itemnames never so sell
should work.
M4gm4
Posts: 137
Joined: Sun Jan 30, 2011 2:30 pm

Re: Sell Blue items, but not Monstercards,,, how ?

#4 Post by M4gm4 »

hmm, k ,, i buy some cheap cards and test it...
I use the google translator, so do not be surprised if my english is funny
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Sell Blue items, but not Monstercards,,, how ?

#5 Post by rock5 »

You don't need to. Just pull out some of your current cards and test. If they sell, you can just buy them back at the same price.
  • 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
M4gm4
Posts: 137
Joined: Sun Jan 30, 2011 2:30 pm

Re: Sell Blue items, but not Monstercards,,, how ?

#6 Post by M4gm4 »

^^ok,, i have test it ...
There is no problem, and nothing to do in the settings^^
cards can´t be selled by the merch ^^ :oops: :mrgreen:
I use the google translator, so do not be surprised if my english is funny
Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: Sell Blue items, but not Monstercards,,, how ?

#7 Post by Alkaiser »

Right, cards aren't sellable, however, the merchant function would sell faster if it didn't always try to sell them and skipped over them instead. The "Card" filter doesn't work, and like rock said, it is most likely because of the hyphen in the name.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Sell Blue items, but not Monstercards,,, how ?

#8 Post by rock5 »

The only other thing I think you can filter by is 'type'. Try adding "Monster Cards" to the "INV_AUTOSELL_TYPES_NOSELL" profile option.
  • 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
Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: Sell Blue items, but not Monstercards,,, how ?

#9 Post by Alkaiser »

That did it!
Post Reply