Turn Auto Consume on/off

bob_the_builder

Well-Known Member
So I was using a script to put food in and out during EQ2bot initialize but I found out yesterday I can turn auto consume on and off.

Just wondering is there a way to script that to turn on/off ?

Bob
 

insanitywiz

Senior Member
That would be a good one to know, first thing I do when I make a toon is turn it off, and manually consume drink (rarely food) when I need it. Between an Sk MT, Illy, and Dirge, and Warden I just don't see many power issues even without wasting drink.
 

bob_the_builder

Well-Known Member
There's this little thing we like to call a wiki that has all kinds of info... I realize it's hard to know if something is there, but seriously guys, when I type "auto consume" into the wiki search, the first hit is this, which tells you how to do exactly what you're saying... http://eq2.isxgames.com/wiki/index.php?title=ISXEQ2:Item_(Data_Type)
Awesome, I found this also using 'AutoConsumeOn'

https://www.isxgames.com/forums/showthread.php?t=2814

echo ${Me.Equipment[Food].AutoConsumeOn} reports True or False

But I am trying to now toggle it on/off. This didn;t work for me, any suggestions?

eq2execute Me.Inventory[ExactName,Crispy Fried King Prawn Heads]:ToggleAutoConsume

Do I have to run it in my class file for it to work? It seems like it should.

Thanks in adv.

Bob
 

Marcus

Member
EQ2Execute tries to run your argument as an EQ2 command, not an isxeq2 command. Just type the command.

And you're making things way too hard on yourself. Type this into the console:

Me.Equipment[Food]:ToggleAutoConsume

Incidentally, the toggle will fail if you don't have anything in the Food/Drink slot.
 
Top Bottom