Which version of eatdrink do you use? There is one in the "unofficial ascend"-thread that has a lot of bugfixes in it.
Edit: Never mind that. Mine is also stopping. SOmethign happened in Mafia between 8735 and 8739 that made eatdrink stop working because when I went back to 8735 is worked just fine.
Edit, edit: Could however not reproduce this error on my other character, who is in Hardcore though.
I just ran the old version in update 8740. It decided that with the value per adventure set to 750 the best thing for me to drink was 19 cans of swiller.
Do you have access to the mall/allowing mafia to buy from the mall? That sounds like something it would do if you have no access to the mall and have a lot of swiller in your inventory...
Pass 1: food.
food: At 0, consuming to 15.
Loading food map from Mafia's datafiles
Loading fullness.txt.
fullness.txt loaded successfully.
Importing mafia info for 4763
Map modified within foreach (eatdrink.ash, line 961)
> ash to_item(4763)
Returned: none
> ash to_int($item[pumpkin pie])
Returned: 4763
> ash to_item(4763)
Returned: none
if(var_check("eatdrink_daily_"+ replace_string(to_string(it)," ","_")) ||
(historical_age(it) > to_float(vars["eatdrink_maxAge"])))
{
price = mall_price(it);
if(var_check("eatdrink_daily_"+ replace_string(to_string(it)," ","_")))
verbose2("CHECKDAILY:"+it+" = "+price);
else
verbose2("STALE :"+it+" = "+price);
}
else
{
price = historical_price(it);
if (price == 0)
{
price = mall_price(it);
verbose2("ERROR :"+it+" = "+price);
}
else
verbose2("HISTORICAL:"+it+" = "+price);
}
}
Isn't it supposed to use historic information if the age matches?