SVN 395: Autosell with check for durability and stats

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Message
Author
d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

SVN 395: Autosell with check for durability and stats

#1 Post by d003232 » Fri Nov 06, 2009 12:14 pm

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.
The RoM Bot Online Wiki needs your help!

j_schlott
Posts: 119
Joined: Tue Aug 18, 2009 11:42 pm

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

#2 Post by j_schlott » Fri Nov 06, 2009 4:30 pm

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" />

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#3 Post by d003232 » Sat Nov 07, 2009 1:51 am

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.
The RoM Bot Online Wiki needs your help!

Wazza77
Posts: 17
Joined: Mon Nov 09, 2009 3:58 am

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

#4 Post by Wazza77 » Mon Nov 09, 2009 6:55 am

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?

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#5 Post by d003232 » Mon Nov 09, 2009 10:10 am

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" />
The RoM Bot Online Wiki needs your help!

coolgangsta
Posts: 10
Joined: Wed Sep 30, 2009 5:54 pm

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

#6 Post by coolgangsta » Tue Nov 17, 2009 11:09 pm

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" />

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

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

#7 Post by Administrator » Wed Nov 18, 2009 2:39 am

You should not include spaces after the commas. For example, "white,green" is correct, but "white, green" is not.

coolgangsta
Posts: 10
Joined: Wed Sep 30, 2009 5:54 pm

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

#8 Post by coolgangsta » Wed Nov 18, 2009 8:09 am

Ah, thank you!

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#9 Post by d003232 » Wed Nov 18, 2009 6:33 pm

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!).
The RoM Bot Online Wiki needs your help!

aardkaz
Posts: 14
Joined: Thu Dec 10, 2009 1:33 am

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

#10 Post by aardkaz » Sun Dec 13, 2009 8:46 pm

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" />

j_schlott
Posts: 119
Joined: Tue Aug 18, 2009 11:42 pm

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

#11 Post by j_schlott » Tue Dec 15, 2009 8:29 pm

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

akira2102
Posts: 51
Joined: Sat Jul 18, 2009 2:10 pm

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

#12 Post by akira2102 » Sat Dec 26, 2009 5:48 am

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?

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#13 Post by d003232 » Sat Dec 26, 2009 7:04 am

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 '.
The RoM Bot Online Wiki needs your help!

akira2102
Posts: 51
Joined: Sat Jul 18, 2009 2:10 pm

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

#14 Post by akira2102 » Sat Dec 26, 2009 1:28 pm

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"

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#15 Post by d003232 » Sat Dec 26, 2009 2:11 pm

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.
The RoM Bot Online Wiki needs your help!

akira2102
Posts: 51
Joined: Sat Jul 18, 2009 2:10 pm

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

#16 Post by akira2102 » Sat Dec 26, 2009 2:20 pm

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?

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#17 Post by d003232 » Sat Dec 26, 2009 3:28 pm

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.
The RoM Bot Online Wiki needs your help!

akira2102
Posts: 51
Joined: Sat Jul 18, 2009 2:10 pm

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

#18 Post by akira2102 » Sat Dec 26, 2009 6:08 pm

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.

d003232
Posts: 1252
Joined: Wed Jun 03, 2009 4:27 pm

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

#19 Post by d003232 » Sat Dec 26, 2009 6:29 pm

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.
The RoM Bot Online Wiki needs your help!

Maroco
Posts: 30
Joined: Fri Sep 18, 2009 11:25 pm

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

#20 Post by Maroco » Sun Dec 27, 2009 1:20 pm

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

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 124 guests