Well yes that can be done if they have removed it. And i probably should of thought of a better title since i havent tested them on all versions but meh

.
It is pretty easy to code an autopill function though..
If your hp or chi is < the precent then the loop that checks the hotkey items in sequence *ide do it reverse. so your piills get eaten on bar 3 then 2 then 1...* finds out if its a pill for what you need if so it gets used and the loop breaks. If it gets to the end then the loops finished.
hackloop
{
if (Hacks.AutoPill)
{
AutoPill();
}
}
function AutoPill()
{
if (HP% < HPPILL%)
{
FindPill(true);
}
if (CHI%<CHIPILL%)
{
FindPill(false);
}
}
function FindPill(bool IsHPPill)
{
// Loop through items to find hp and chi pills if needed
Item i=new Item();
for (int i=0;i<Ammountofitems;i++)
{
memcpy( i,address,sizeof(Item) );
if (IsHPPill)
{
if (i.itemid==hppill ok theres more than 1...)
{
UsePillFromBar(i);
return;
}
else if (i.itemid==chipill ok theres more than 1...){ // Should be replaced by if ( isChiPill(i.ItemId) ) etc
// Its a chi pill
UsePillFromBar(i);
}
}
}
}
Excuse the poor code but yeah.. :P
gotta go!