scout poisons

ahovinetz

Active Member
I was wondering if there was a way to put a maintained use poison that's in your inventory for a script. IE whenever a poison has finished its charges the scout would automatically refresh the poison back on.

Any help would be appreciated.
 

botmaster01

Active Member
Hit it like this:

Code:
if !${Me.Maintained[essence of turgur](exists)}
{
     if ${Me.Inventory[Superior Essence of Turgur](exists)}
     {
          Me.Inventory[Superior Essence of Turgur]:Use
     }
}
I have that and others nested in my EQ2 Bot buff routine. Works like a charm. I suppose you could combine those two if statements together too.
 
Top Bottom