INV_AUTOSELL_IGNORE Question

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

INV_AUTOSELL_IGNORE Question

#1 Post by Alkaiser »

Code: Select all

        <option name="INV_AUTOSELL_ENABLE"    value="true" />
        <option name="INV_AUTOSELL_FROMSLOT"    value="31" />
        <option name="INV_AUTOSELL_TOSLOT"    value="60" />
        <option name="INV_AUTOSELL_QUALITY"    value="white,green" />
        <option name="INV_AUTOSELL_IGNORE"    value="Rune,Sand,Bundle,Timber" />
I would like to avoid selling recipes of any color. I tried adding "Recipe" to the ignore list, but it continues to sell recipes. I do have the ingamefunctions in my interface/addons folder.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: INV_AUTOSELL_IGNORE Question

#2 Post by rock5 »

Recipes are one of those problem items because of the hyphen "-" in the name. I don't think there is any way around it.
  • 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
User avatar
Administrator
Site Admin
Posts: 5353
Joined: Sat Jan 05, 2008 4:21 pm

Re: INV_AUTOSELL_IGNORE Question

#3 Post by Administrator »

rock5 wrote:Recipes are one of those problem items because of the hyphen "-" in the name. I don't think there is any way around it.
What's the problem with hyphen? Is it just with the matching? If so, "%-" instead of just "-" should allow it to be matched properly, without having to disable wild cards.
Alkaiser
Posts: 222
Joined: Sat Sep 25, 2010 2:03 pm

Re: INV_AUTOSELL_IGNORE Question

#4 Post by Alkaiser »

Are you suggesting "Recipe %-" will work while just "Recipe" will not? As an alternative, since all recipes are worth 1 gold and this is stated in the item description, will it work if I use "1 Gold" as a filter?
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: INV_AUTOSELL_IGNORE Question

#5 Post by rock5 »

Well I just checked, I have a recipe but the name comes up blank. I think cards would have a similar problem but an exception has been put in the code to name cards correctly. I suspect similar steps need to be taken to correctly name the recipes too.
  • 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
Post Reply