Autosell all except specific items

All resolved question will be found here. It is recommended that you browse / search through this section first and see if your question has been answered before

Moderators: Moderators, Documentation Writers

Message
Author
TooNoob
Noob
Noob
Posts: 2
Joined: 01 Jun 2011, 02:10
Noob?: Yes

Autosell all except specific items

#1 Post 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?

EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Autosell all except specific items

#2 Post by EternalHarvest »

Code: Select all

empty bottle 0 0 0
or just

Code: Select all

empty bottle 0

TooNoob
Noob
Noob
Posts: 2
Joined: 01 Jun 2011, 02:10
Noob?: Yes

Re: Autosell all except specific items

#3 Post by TooNoob »

Alright thanks. Does the rest of the autoSell look fine?

Locked