Page 1 of 1

Autosell all except specific items

Posted: 01 Jun 2011, 22:08
by TooNoob
What I would like to do is initiate an autoSell function but not sell specific items in my inventory, lets say Empty Bottle. But at the sae time, I do not want to put them in storage just to take them out later. So for my autoSell, would it look something like this:

Code: Select all

doCommand autosell {
whenStatusActive Owg 50%
timeout 100
}

sellAuto 1
sellAuto_npc payon 159 96
sellAuto_npc_steps
sellAuto_standpoint
sellAuto_distance 3
And in items_control, would I have:

Code: Select all

all 0 0 1
empty bottle ? ? ?
'cause if I wanted them in storage it'd be 0 1 0, but what about leaving them in my inventory and just not selling them?

Re: Autosell all except specific items

Posted: 02 Jun 2011, 15:28
by EternalHarvest

Code: Select all

empty bottle 0 0 0
or just

Code: Select all

empty bottle 0

Re: Autosell all except specific items

Posted: 03 Jun 2011, 23:46
by TooNoob
Alright thanks. Does the rest of the autoSell look fine?