the problem was setting, I was not in the profile function
Code: Select all
<option name="INV_AUTOSELL_TYPES_NOSELL" value="nil" />
must write to your profile
Code: Select all
<!-- Auto selling options when used with player:merchant -->
<option name="INV_MAX_SLOTS" value="180" />
<option name="INV_UPDATE_INTERVAL" value="300" />
<option name="INV_AUTOSELL_ENABLE" value="false" /> <!-- true | false -->
<option name="INV_AUTOSELL_FROMSLOT" value="1" /> <!-- 1 = bag 1 slot 1 -->
<option name="INV_AUTOSELL_TOSLOT" value="60" /> <!-- 30 = last slot bag 1 -->
<option name="INV_AUTOSELL_QUALITY" value="nil" /> <!-- white,green,blue,purple -->
<option name="INV_AUTOSELL_IGNORE" value="nil" /> <!-- Purify Rune,Frost Rune,Blend Rune,Link Rune -->
<option name="INV_AUTOSELL_TYPES" value="nil" /> <!-- Runes, Potions, Production Runes -->
<option name="INV_AUTOSELL_TYPES_NOSELL" value="nil" /> <!-- Runes, Potions, Production Runes -->
<option name="INV_AUTOSELL_NOSELL_DURA" value="0" />
<option name="INV_AUTOSELL_STATS_NOSELL" value="nil" />
<option name="INV_AUTOSELL_STATS_SELL" value="nil" />
<option name="DEBUG_AUTOSELL" value="false" />
and script
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onload>
changeProfileOption("INV_MAX_SLOTS", 90)
changeProfileOption("INV_UPDATE_INTERVAL", 300)
changeProfileOption("INV_AUTOSELL_ENABLE", true)
changeProfileOption("INV_AUTOSELL_FROMSLOT", 1)
changeProfileOption("INV_AUTOSELL_TOSLOT", 90)
changeProfileOption("INV_AUTOSELL_QUALITY", "white,green")
changeProfileOption("INV_AUTOSELL_IGNORE", "Poison Bottle")
changeProfileOption("INV_AUTOSELL_TYPES","Weapons,Armor,Recipes,Others")
changeProfileOption("INV_AUTOSELL_TYPES_NOSELL","Runes,Potions,Production Runes")
changeProfileOption("INV_AUTOSELL_NOSELL_DURA", 109)
-- changeProfileOption("INV_AUTOSELL_STATS_NOSELL"," X,XI")
-- changeProfileOption("INV_AUTOSELL_STATS_SELL","IX")
-- changeProfileOption("INV_AUTOSELL_NOSELL_STATSNUMBER",2)
changeProfileOption("DEBUG_AUTOSELL", true)
</onload>
<!-- # 1 --><waypoint x="-7077" z="-4164" y="171">
yrest(100);
player:merchant(118078);
yrest(100);
</waypoint>
</waypoints>
is an exception for one item? Here is just the type of item
Code: Select all
changeProfileOption("INV_AUTOSELL_TYPES_NOSELL","Runes,Potions,Production Runes")
I need to sell "Potions" - Phirius Potion - Type A
Does not work RoM Bot Wiki?