Page 1 of 3

SVN 395: Autosell with check for durability and stats

Posted: Fri Nov 06, 2009 12:14 pm
by d003232
With SVN 395 there are new options to check the durability and stats of items before you sell them. So you can avoid to sell high valued items with a very high durability or with very good stats.

Use the profile options:

Code: Select all

<option name="INV_AUTOSELL_NOSELL_DURA"		value="110" />
<option name="INV_AUTOSELL_STATS_NOSELL"		value="X" />
<option name="INV_AUTOSELL_STATS_SELL"		value="IX" />
INV_AUTOSELL_NOSELL_DURA
Items with a durability eq or greater that value will not be selled

INV_AUTOSELL_STATS_NOSELL
Items with that text strings in the right tooltip side will not be selled. Caution: It's only a very easy check. So that text strings are checked against the whole right side tooltip text. E.g. if you want to save the stat 'defense', also items with 'magical defense' will not be selled. Not only items with the stat 'defense'. Sry for that. If you set the value 'X', all stats with 'X' wouldn't be selled: 'X', 'IX', 'XI'.

INV_AUTOSELL_STATS_SELL
By using that items, you could overwrite the 'INV_AUTOSELL_STATS_NOSELL' value. e.g. if you set 'INV_AUTOSELL_STATS_NOSELL'="X" you would not sell 'IX' stats. But if you know set 'INV_AUTOSELL_STATS_SELL="IX" you would sell 'IX' stats and save all other stats with 'X'.

You can use the option:

Code: Select all

<option name="DEBUG_AUTOSELL"		value="true" />
to get some debuging options while using autosell.

And now the most important thing: We need to read the ingame tooltip to check the durability and the stats. That's at the moment not possible by only using the RoMScript() MACRO function. So we need a little ingame addon. That addon is named 'igf' (ingamefunctions). You found that addon in the bot folder 'rom/devtools/'.

Please copy the folder 'ingamefunctions' into your RoM installation into the folder '\Runes of Magic\Interface\AddOns' to install that addon. And restart the RoM games client.

Re: SVN 395: Autosell with check for durability and stats

Posted: Fri Nov 06, 2009 4:30 pm
by j_schlott
very very nice
lets say i need to add more than one thing to sell/nosell list, is this the correct format?

Code: Select all

<option name="INV_AUTOSELL_STATS_NOSELL"      value="VIII, X" />

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Nov 07, 2009 1:51 am
by d003232
j_schlott wrote:very very nice
lets say i need to add more than one thing to sell/nosell list, is this the correct format?

Code: Select all

<option name="INV_AUTOSELL_STATS_NOSELL"      value="VIII, X" />
Yes, that would not sell all 'VIII', ' X' and ' XI' stats. There is not space trim for that options.

Re: SVN 395: Autosell with check for durability and stats

Posted: Mon Nov 09, 2009 6:55 am
by Wazza77
The sell feature is awesome or it will be when I get it to work properly. I've waited for such function for a long time. Thx! It's however not selling any green or blue items (in this case low dura and low statted). Is there a setting for that?

Re: SVN 395: Autosell with check for durability and stats

Posted: Mon Nov 09, 2009 10:10 am
by d003232
Wazza77 wrote:The sell feature is awesome or it will be when I get it to work properly. I've waited for such function for a long time. Thx! It's however not selling any green or blue items (in this case low dura and low statted). Is there a setting for that?
See here in the Wiki for the complete description. If you want to sell also green and blue items, you need the setting:

Code: Select all

<option name="INV_AUTOSELL_QUALITY"	value="white,green,blue" />

Re: SVN 395: Autosell with check for durability and stats

Posted: Tue Nov 17, 2009 11:09 pm
by coolgangsta
I'm having problems with this. I'm trying to get it to keep all overdura, Intelligence and Stamina mods. But as it is, it's only keeping overdura items. What did I do wrong?

Code: Select all

		<option name="INV_AUTOSELL_ENABLE"      value="true" />
		<option name="INV_AUTOSELL_FROMSLOT"  	value="6" />
		<option name="INV_AUTOSELL_TOSLOT"      value="60" />
		<option name="INV_AUTOSELL_QUALITY"     value="white, green" />
		<option name="INV_AUTOSELL_IGNORE"      value="" />
		<option name="INV_AUTOSELL_NOSELL_DURA"	value="110" />
		<option name="INV_AUTOSELL_STATS_NOSELL" value="Intelligence, Stamina" />
		<option name="INV_AUTOSELL_STATS_SELL"	value="" />
		<option name="DEBUG_AUTOSELL"      value="true" />

Re: SVN 395: Autosell with check for durability and stats

Posted: Wed Nov 18, 2009 2:39 am
by Administrator
You should not include spaces after the commas. For example, "white,green" is correct, but "white, green" is not.

Re: SVN 395: Autosell with check for durability and stats

Posted: Wed Nov 18, 2009 8:09 am
by coolgangsta
Ah, thank you!

Re: SVN 395: Autosell with check for durability and stats

Posted: Wed Nov 18, 2009 6:33 pm
by d003232
coolgangsta wrote:I'm having problems with this. I'm trying to get it to keep all overdura, Intelligence and Stamina mods. But as it is, it's only keeping overdura items. What did I do wrong?

Code: Select all

		<option name="INV_AUTOSELL_ENABLE"      value="true" />
		<option name="INV_AUTOSELL_FROMSLOT"  	value="6" />
		<option name="INV_AUTOSELL_TOSLOT"      value="60" />
		<option name="INV_AUTOSELL_QUALITY"     value="white, green" />
		<option name="INV_AUTOSELL_IGNORE"      value="" />
		<option name="INV_AUTOSELL_NOSELL_DURA"	value="110" />
		<option name="INV_AUTOSELL_STATS_NOSELL" value="Intelligence, Stamina" />
		<option name="INV_AUTOSELL_STATS_SELL"	value="" />
		<option name="DEBUG_AUTOSELL"      value="true" />
The strings "Intelligence" and " Stamina" will only be searched in the right part of the tooltip. So you have to be sure, that's the right description. Sometimes the Stat is "+30 Intelligence" but the description at the right side of the tooltip for that stat is something other. You have to take that description.

And for the "INV_AUTOSELL_STATS_..." options there is no leading and trailing space trim! That's because it is the easiest way to filter 'X' and 'XI' (ten and eleven) stats by entering ' X' (with leading space) into the search string. If you only enter 'X' (without space) into the search string it will also filter 'IX' stats or and text with a 'x' inside.

So, your "Intelligence, Stamina" will search for " Stamina" (with a leading space) and will found noting.

The values in the options "INV_AUTOSELL_QUALITY" and "INV_AUTOSELL_IGNORE" will be automaticly trimmed for leading and trailing spaces. So it doen't matter if you enter "white, green" or "white,green" for that.

And you could use

Code: Select all

<option name="INV_AUTOSELL_STATS_SELL"	value=" III, IV, V, VI, IV" />
if you want to sell low level Intelligence & Stamina stats (the leading spaces are also to avoid wrong sells by finding the text strings somewhere else in the right tooltip!).

Re: SVN 395: Autosell with check for durability and stats

Posted: Sun Dec 13, 2009 8:46 pm
by aardkaz
Administrator wrote:You should not include spaces after the commas. For example, "white,green" is correct, but "white, green" is not.

The Wiki shows it this way, may want to update the wiki so that it shows it without the space.

From wiki(http://www.solarstrike.net/wiki/index.p ... uto_repair):

Code: Select all

<option name="INV_AUTOSELL_QUALITY"	value="white, green" />
<option name="INV_AUTOSELL_IGNORE"	value="Pfeil, Elementar, III" />

Re: SVN 395: Autosell with check for durability and stats

Posted: Tue Dec 15, 2009 8:29 pm
by j_schlott

Code: Select all

<option name="INV_AUTOSELL_QUALITY"   value="white, green" />
the values(white,green,blue,purple) in that option are preset in the code so having the space, in this particular option, does not matter.


your problem is
<option name="INV_AUTOSELL_STATS_NOSELL" value="Intelligence, Stamina" />
you are searching for " Stamina" with a space, which would work if you wanted to keep a spell labeled "Spell of Stamina" as that has a space before stamina, but most if not all Stamina spells ingame have no spaces

Code: Select all

<option name="INV_AUTOSELL_STATS_NOSELL"   value="VIII,IX, X" />
this is apart of my code, using spaces in some parts is necessary, i want to keep any spell over level 8, so i search for these things. my " X" has a space in front of it, if you were just searching for "X" you would keep every DeXterity spell aswell.

so there are some good reasons for using a spaces in code

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 5:48 am
by akira2102
Is it possible to add something like " III, IV , 'bla bla bla'"

so that 'bla bla bla' only would be selled if its exactly the string i entered?

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 7:04 am
by d003232
akira2102 wrote:Is it possible to add something like " III, IV , 'bla bla bla'"

so that 'bla bla bla' only would be selled if its exactly the string i entered?
If I remember it right, it will work exactly that way. If you enter

Code: Select all

<option name="INV_AUTOSELL_STATS_SELL"   value=" III, IV ,bla bla bla" />
it would be only be selled if the stats contain the strings ' III' or ' IV ' or 'bla bla bla'.

It will not sell items with 'something IV', because you enter the stat wit a space ' IV '.

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 1:28 pm
by akira2102
d003232 wrote:If I remember it right, it will work exactly that way. If you enter

Code: Select all

<option name="INV_AUTOSELL_STATS_SELL"   value=" III, IV ,bla bla bla" />
it would be only be selled if the stats contain the strings ' III' or ' IV ' or 'bla bla bla'.

It will not sell items with 'something IV', because you enter the stat wit a space ' IV '.

Hm, i dont think so... when i enter " IV" "something IV" is selled (or not selled)! And in this case "bla bla bla bla" and "bla bla bla bla bla" would sell either. So I just wondered if it is possible to set bla bla bla in 'bla bla bla' so that the scripped really only sells (or not) "bla bla bla"

this way--> <option name="INV_AUTOSELL_STATS_SELL" value="something, something else, 'bla bla bla', something different"

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 2:11 pm
by d003232
akira2102 wrote:Hm, i dont think so... when i enter " IV" "something IV" is selled (or not selled)! And in this case "bla bla bla bla" and "bla bla bla bla bla" would sell either. So I just wondered if it is possible to set bla bla bla in 'bla bla bla' so that the scripped really only sells (or not) "bla bla bla"

this way--> <option name="INV_AUTOSELL_STATS_SELL" value="something, something else, 'bla bla bla', something different"
lol. Thats complicated. :-) I think you should give a real example.

The function is working in a very easy way. It just search for the given strings within the right tooltip text. The function first search for the

Code: Select all

<option name="INV_AUTOSELL_STATS_SELL"   value="sellstring1, sellstring2, sellstring3" />
and if it get a positive found hit the function will do a check against the

Code: Select all

<option name="INV_AUTOSELL_STATS_NOSELL"   value="nosellstring1, nosellstring2, nosellstring3" />
option. An item will only be selled if the SELL-string is in the right tooltip text AND the NOSELL-string is not in the right tooltip text.

It is a string search, not a full string compare.

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 2:20 pm
by akira2102
Hm, ok i get that but the thing is that this does not work anymore. I tried and tried but there seems to be a problem. I entered in the Autosell_ignore option " III" and it dont sells " VIII". But i also just removed the "Duarability 110" option but it does not sell the items. Is there a problem right now with this script or am i the only one with this problem?

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 3:28 pm
by d003232
akira2102 wrote:Hm, ok i get that but the thing is that this does not work anymore. I tried and tried but there seems to be a problem. I entered in the Autosell_ignore option " III" and it dont sells " VIII". But i also just removed the "Duarability 110" option but it does not sell the items. Is there a problem right now with this script or am i the only one with this problem?
If you enter " III" it will not sell " VIII". That's right, because of the space in front of the "III" (remember it's a string find). If you use "III" it will be found within " VIII" and will be selled.

If you set the option

Code: Select all

<option name="DEBUG_AUTOSELL"      value="true" />
you should get informed why the bot isn't selling an item.

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 6:08 pm
by akira2102
Thank u for ur help.

Just for the understanding.... " III" if entered in AUTO_SELL_IGNORE wont sell "Something VIII"? Because thats the way it is right now. That would be really crazy oO

I already had entered the debug option in my profile but i dont get why the item isn't sold. I habe white items without stats and without higher durability but the script dont sell them.

Is there a explanation of the debugging? I see what the teh script is checking but it would be nice if the decission the script takes is also mentioned.

Re: SVN 395: Autosell with check for durability and stats

Posted: Sat Dec 26, 2009 6:29 pm
by d003232
akira2102 wrote:" III" if entered in AUTO_SELL_IGNORE wont sell "Something VIII"? Because thats the way it is right now. That would be really crazy oO
The strings entered in the AUTO_SELL_IGNORE option will only be checked against the item name. That means if you enter ' III' that would avoid to sell 'runestype1 III', 'runestype2 III', ... It will not checked against the stats from the tooltip text.

Also all strings from the AUTO_SELL_IGNORE option will be trimed. If you enter " III" it will be trimmed to "III" and so you will also ignore items with " VIII" in the name. But I suppose there aren't any items with such a name (not stats!)?

If I remember right, you should see the reason for not selling an item in the debuging messages.

Re: SVN 395: Autosell with check for durability and stats

Posted: Sun Dec 27, 2009 1:20 pm
by Maroco
Hi all, i hawe problem, afterr last update 410 the Autosell stop work. I didn cheng nothink in the code. Any idea?

I try update micromacro and lua. Not help

Code: Select all

Mapping inventory (bagslot 1 to 60)...
100% [**************************************************]
[DEBUG] Check item so sell:  520082 Vitality II
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10 |cffEBDF904|r => X
[DEBUG] Check nosellstat line: 11 |cffEBDF9020|r => X
[DEBUG] Check nosellstat line: 12 |cffEBDF900.4|r => X
[DEBUG] Check nosellstat line: 13 |cffEBDF9012|r => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  220366 Sharpmoon Long Robe
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability => 80
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2 |cffFFFFFFDurability 80/80 => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4 |cffFFFFFFUpper Body => X
[DEBUG] Check nosellstat line: 5 |cffFFFFFFMagical Defense 626 => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12 |cffEBDF900 ( |cffff0000- 63|r|cffEBDF90)|r =>
 X
[DEBUG] Check nosellstat line: 13 |cffEBDF900 ( |cffff0000- 80|r|cffEBDF90)|r =>
 X
[DEBUG] Check nosellstat line: 14 |cffEBDF900 ( |cffff0000- 10|r|cffEBDF90)|r =>
 X
[DEBUG] Check item so sell:  203606 Amulet of Light
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  203588 Rune Rubbing
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  204445 Stomach
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  205535 Goldie
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  203544 Sheepskin Parchment Scroll
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
[DEBUG] Check item so sell:  204610 Blessed Seed
[DEBUG] Itemcolor not in option INV_AUTOSELL_QUALITY:
[DEBUG] Durability check, search for: Durability =>
[DEBUG] Check nosellstat line: 1   => X
[DEBUG] Check nosellstat line: 2   => X
[DEBUG] Check nosellstat line: 3   => X
[DEBUG] Check nosellstat line: 4   => X
[DEBUG] Check nosellstat line: 5   => X
[DEBUG] Check nosellstat line: 6   => X
[DEBUG] Check nosellstat line: 7   => X
[DEBUG] Check nosellstat line: 8   => X
[DEBUG] Check nosellstat line: 9   => X
[DEBUG] Check nosellstat line: 10   => X
[DEBUG] Check nosellstat line: 11   => X
[DEBUG] Check nosellstat line: 12   => X
[DEBUG] Check nosellstat line: 13   => X
[DEBUG] Check nosellstat line: 14   => X
[DEBUG] Check nosellstat line: 15   => X
[DEBUG] Check nosellstat line: 16   => X
[DEBUG] Check nosellstat line: 17   => X
[DEBUG] Check nosellstat line: 18   => X
[DEBUG] Check nosellstat line: 19   => X
[DEBUG] Check nosellstat line: 20   => X
Shopping..........
Mapping inventory (bagslot 1 to 60)...
100% [**************************************************]
me set

Code: Select all

<option name="INV_AUTOSELL_ENABLE"      value="true" />
		<option name="INV_AUTOSELL_FROMSLOT"   value="2" />
		<option name="INV_AUTOSELL_TOSLOT"      value="18" />
		<option name="INV_AUTOSELL_QUALITY"   value="white,green,blue" />    <!--  green -->
		<option name="INV_AUTOSELL_IGNORE"      value="potion, 223443, weaponname" />
		<option name="DEBUG_WAYPOINT"      value="true" />

		<option name="INV_AUTOSELL_NOSELL_DURA"      value="120" />
		<option name="INV_AUTOSELL_STATS_NOSELL"      value="X" />
		<option name="INV_AUTOSELL_STATS_SELL"      value="IX" />
		<option name="DEBUG_AUTOSELL"      value="true" />
thx for help